Skip to content

PotatoMaster101/proeuler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Project Euler Answers

My answers for Project Euler.

Compilation

All of the code will be in C++20 or above. Replace <n> with question number.

Linux:

$ g++ problems/<n>/*.cpp -std=c++2a -Wall -Wextra

Windows:

$ cl.exe problems/<n>/*.cpp /EHsc /std:c++latest /W4