Greedy Algorithms - Gas Station (Circular)
Consider two approaches to solve the Gas Station problem:
Approach 1: Brute force checking each station as start (O(n²))
Approach 2: Greedy with total gas check and resetting start (O(n))
When is the brute force approach preferable over the greedy approach?
