From c22e482974ec4b303b8a69a89c4e19a316862ebc Mon Sep 17 00:00:00 2001 From: Lam Haoyin Date: Sat, 1 Jan 2022 00:39:15 +0800 Subject: [PATCH] add: Happy 2022! --- 2201/220101-CN.cpp | 4 ++++ 2201/CMakeLists.txt | 6 ++++++ CMakeLists.txt | 1 + 3 files changed, 11 insertions(+) create mode 100644 2201/220101-CN.cpp create mode 100644 2201/CMakeLists.txt diff --git a/2201/220101-CN.cpp b/2201/220101-CN.cpp new file mode 100644 index 0000000..71937db --- /dev/null +++ b/2201/220101-CN.cpp @@ -0,0 +1,4 @@ +// +// Created by Lam Haoyin on 01/01/22. +// + diff --git a/2201/CMakeLists.txt b/2201/CMakeLists.txt new file mode 100644 index 0000000..5e425c3 --- /dev/null +++ b/2201/CMakeLists.txt @@ -0,0 +1,6 @@ +CMAKE_MINIMUM_REQUIRED(VERSION 3.21) +PROJECT(2201) + +SET(CMAKE_CXX_STANDARD 23) + +ADD_EXECUTABLE(2201 220101-CN.cpp) \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bced43..4da6b1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,3 +6,4 @@ SET(CMAKE_CXX_STANDARD 23) ADD_EXECUTABLE(LeetCodeDaily main.cpp) ADD_SUBDIRECTORY(2112) +ADD_SUBDIRECTORY(2201)