LeetCode: https://leetcode.com/problems/gas-station/
There are n gas stations. You have two integer arrays gas and cost. Return the starting gas station index if you can travel around the circuit once, otherwise return -1.
1
0
2
1
3
2
4
3
5
4
result=false
Step 1 / 3
Step 1:
If total gas < total cost, impossible.
Focus: default
result=false