leetcode/include/s1049_last_stone_weight_ii.hpp
Sainnhe Park 8551696b52
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s1049
2023-02-09 15:52:59 +08:00

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