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