add: February 2022 has started!
This commit is contained in:
parent
532cfe7ab2
commit
b3db615aee
|
|
@ -0,0 +1,8 @@
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
class Solution {
|
||||||
|
public:
|
||||||
|
std::string longestNiceSubstring(const std::string& s) {
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
CMAKE_MINIMUM_REQUIRED(VERSION 3.21)
|
||||||
|
PROJECT(2202)
|
||||||
|
|
||||||
|
SET(CMAKE_CXX_STANDARD 23)
|
||||||
|
|
||||||
|
ADD_EXECUTABLE(2202 220201-CN.cpp)
|
||||||
|
|
@ -8,6 +8,7 @@ SET(CMAKE_CXX_FLAGS "-Wall")
|
||||||
|
|
||||||
ADD_EXECUTABLE(LeetCodeDaily main.cpp)
|
ADD_EXECUTABLE(LeetCodeDaily main.cpp)
|
||||||
|
|
||||||
ADD_SUBDIRECTORY(2112)
|
# ADD_SUBDIRECTORY(2112)
|
||||||
ADD_SUBDIRECTORY(2201)
|
ADD_SUBDIRECTORY(2201)
|
||||||
|
ADD_SUBDIRECTORY(2202)
|
||||||
ADD_SUBDIRECTORY(more)
|
ADD_SUBDIRECTORY(more)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue