15 lines
180 B
C++
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
|