Input: gas = [1,2,3,4,5], cost = [3,4,5,1,2]
Output: 3
Explanation: Start at station 3 (index 3). Tank = 0 + 4 = 4. Travel to station 4: Tank = 4 - 1 + 5 = 8. Travel to station 0: Tank = 8 - 2 + 1 = 7. Travel to station 1: Tank = 7 - 3 + 2 = 6. Travel to station 2: Tank = 6 - 4 + 3 = 5. Travel to station 3: Tank = 5 - 5 = 0.