leetcode/include/s0135_candy.hpp
Sainnhe Park f4912703f9
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s0135
2023-02-07 12:36:51 +08:00

15 lines
180 B
C++

#ifndef S0135_CANDY_HPP
#define S0135_CANDY_HPP
#include <algorithm>
#include <vector>
using namespace std;
class S0135 {
public:
int candy(vector<int>& ratings);
};
#endif