Gas Station - Greedy Start Point
Problem: Find starting station to complete circuit
Greedy Insight: If total gas β₯ total cost, solution exists
β’ Track running tank; if negative, reset start to next station
β’ Last start point is the answer
Time: O(n) single pass