leetcode/include/s0135_candy.hpp

15 lines
180 B
C++
Raw Normal View History

2023-02-07 04:36:51 +00:00
#ifndef S0135_CANDY_HPP
#define S0135_CANDY_HPP
#include <algorithm>
#include <vector>
using namespace std;
class S0135 {
public:
int candy(vector<int>& ratings);
};
#endif