s0416
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
2023-02-09 12:27:42 +08:00
parent 51980ea663
commit 43be72324d
4 changed files with 124 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
#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