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