14 lines
206 B
C++
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
|