leetcode/include/s0416_partition_equal_subset_sum.hpp
Sainnhe Park 43be72324d
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s0416
2023-02-09 12:27:42 +08:00

14 lines
206 B
C++

#ifndef S0416_PARTITION_EQUAL_SUBSET_SUM_HPP
#define S0416_PARTITION_EQUAL_SUBSET_SUM_HPP
#include <vector>
using namespace std;
class S0416 {
public:
bool canPartition(vector<int>& nums);
};
#endif