Simple map, filter in c++

This commit is contained in:
Tomasz Półgrabia 2024-07-07 01:11:55 +02:00
parent 62db04986a
commit 51d11391c1
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.28)
project(cpp_algorithms1)
set(CMAKE_CXX_STANDARD 17)
add_executable(cpp_algorithms1 main.cpp)