leetcode/include/s0134_gas_station.hpp

14 lines
199 B
C++
Raw Normal View History

2023-02-07 03:44:09 +00:00
#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