Go to day challenge and use g++ or clang++. I added a binaries directory for your convenience to output the binary file there.
# Example of compiling in C++
# linux
$ g++ -std=c++2a path/to/file.cpp -o ./binaries
# osx
$ clang++ -std=c++2a path/to/file.cpp -o ./binaries