All the content used for NOI training will be uploaded here. This repo will be tagged after every training to make it easy for the everyone.
Following commands can be used for compiling & running each of these programs. A C++ compiler should be installed in the computer to run these solutions.
g++ -std=c++14 -O2 -o <output_file_name> <source_file_name>
./<output_file_name>
Example
g++ -std=c++14 -O2 -o loop1 loop1.cpp
./loop1
Pull requested are accepted. But they should be descriptive about the change & why it should be included in the repository. The code should be documented well to be merged in to the main repo.