s0134
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
2023-02-07 11:44:09 +08:00
parent ef1cab537b
commit fa934cf225
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#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