add: February 2022 has started!

This commit is contained in:
Lam Haoyin 2022-02-01 19:29:42 +08:00
parent 532cfe7ab2
commit b3db615aee
No known key found for this signature in database
GPG Key ID: 8C089CB1A2B7544F
3 changed files with 16 additions and 1 deletions

8
2202/220201-CN.cpp Normal file
View File

@ -0,0 +1,8 @@
#include <string>
class Solution {
public:
std::string longestNiceSubstring(const std::string& s) {
}
};

6
2202/CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.21)
PROJECT(2202)
SET(CMAKE_CXX_STANDARD 23)
ADD_EXECUTABLE(2202 220201-CN.cpp)

View File

@ -8,6 +8,7 @@ SET(CMAKE_CXX_FLAGS "-Wall")
ADD_EXECUTABLE(LeetCodeDaily main.cpp)
ADD_SUBDIRECTORY(2112)
# ADD_SUBDIRECTORY(2112)
ADD_SUBDIRECTORY(2201)
ADD_SUBDIRECTORY(2202)
ADD_SUBDIRECTORY(more)