Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yerlanyr/uva-submissions

This repo is effort to solve problems described in: Programming challenges The complete guide.
https://github.com/yerlanyr/uva-submissions

Last synced: 3 days ago
JSON representation

This repo is effort to solve problems described in: Programming challenges The complete guide.

Awesome Lists containing this project

README

        

This repo is effort to solve problems described in: Programming challenges The complete guide.
# g++ -std=c++11 -ggdb main.cpp -o main.exe
To build.
# main.exe > output.txt
To generate an output.
# g++ -std=c++11 -ggdb main.cpp -o main.exe && main.exe
To build and run.
# g++ -std=c++11 -ggdb main.cpp -o main.exe && main.exe > output.txt
To build and run and generate an output.
# gdb main.exe
To debug program.
# g++ -std=c++11 -ggdb main.cpp -o main.exe && main.exe < input.txt > output.txt && FC output.txt expected.txt
To test.