15 lines
221 B
C++
15 lines
221 B
C++
#ifndef S1049_LAST_STONE_WEIGHT_II_HPP
|
|
#define S1049_LAST_STONE_WEIGHT_II_HPP
|
|
|
|
#include <algorithm>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class S1049 {
|
|
public:
|
|
int lastStoneWeightII(vector<int>& stones);
|
|
};
|
|
|
|
#endif
|