// // Solution136.hpp // Algorithm // // Created by Pancf on 2021/1/3. // #ifndef Solution136_hpp #define Solution136_hpp #include #include class Solution136 { public: int singleNumber(std::vector& nums); static void test() { } }; #endif /* Solution136_hpp */