Skip to content
Open
Prev Previous commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 6, 2024
commit d86adfc65a7d62d764b386e3700256bb57eef9fd
2 changes: 1 addition & 1 deletion data_structures/arrays/gas_station.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Solution:
def can_omplete_circuit(self, gas: list[int], cost: list[int]) -> int:
"""
Finds the starting station index to complete the circuit,
Finds the starting station index to complete the circuit,
or returns -1 if not possible.
Args:
gas (List[int]): List of gas available at each station.
Expand Down