Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/yerlanyr/uva-submissions
- Owner: yerlanyr
- Created: 2019-02-06T12:23:59.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-15T05:00:40.000Z (over 5 years ago)
- Last Synced: 2024-11-22T17:51:34.306Z (2 months ago)
- Language: C++
- Homepage:
- Size: 190 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.