leetcode/include/s0134_gas_station.hpp
Sainnhe Park fa934cf225
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s0134
2023-02-07 11:44:09 +08:00

14 lines
199 B
C++

#ifndef S0134_GAS_STATION_HPP
#define S0134_GAS_STATION_HPP
#include <vector>
using namespace std;
class S0134 {
public:
int canCompleteCircuit(vector<int>& gas, vector<int>& cost);
};
#endif