2024-06-09 06:40:50 +00:00
|
|
|
cmake_minimum_required(VERSION 3.28)
|
|
|
|
project(Playground)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
|
|
|
|
|
|
include_directories(.)
|
|
|
|
|
|
|
|
add_executable(Playground
|
|
|
|
complete-backup/main.cc
|
|
|
|
counting-people/main.cc
|
|
|
|
factorization/main.cc
|
|
|
|
fastest-way2unified-data/main.cc
|
|
|
|
flip-card/main.cc
|
|
|
|
jumping-wooden-trunk/main.cc
|
|
|
|
longest-decreasing-subsequence/main.cc
|
|
|
|
palindrome-number/main.cc
|
|
|
|
pick-class/main.cc
|
|
|
|
plug-dp/main.cc
|
|
|
|
reporting-number/main.cc
|
|
|
|
simple-calculator/main.cc
|
|
|
|
state-compress-dp/main.cpp
|
|
|
|
sudoku/main.cc
|
|
|
|
take-most-space-element/main.cc
|
2024-10-08 15:11:04 +00:00
|
|
|
walking-in-maze/main.cc
|
|
|
|
network-connection/main.cpp)
|