Subtracting

Length (1-Based) - index (0-Based)

Example:

data = ['T', 'A', 'I', 'P', 'E', 'I']

If we take the length (6) and subtract index 2 ('I'): 6 - 2 = 4

This result, 4, means:

Two 0-Based Indices (Larger - Smaller)

Example

data = ['T', 'A', 'I', 'P', 'E', 'I']

If we subtract index 1 ('A') from index 4 ('E'): 4 - 1 = 3

This result, 3, means:

Kth (1-Index-Based)