https://github.com/philipsanm/competitive-prgrmrs-handbook
Competitive Programmer's Handbook
https://github.com/philipsanm/competitive-prgrmrs-handbook
competitive-programming contest-programming cool-stuff cpp11 leetcode-python leetcode-solutions python3
Last synced: 29 days ago
JSON representation
Competitive Programmer's Handbook
- Host: GitHub
- URL: https://github.com/philipsanm/competitive-prgrmrs-handbook
- Owner: PhilipSanM
- License: gpl-3.0
- Created: 2022-03-20T03:30:24.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-14T01:04:46.000Z (about 2 years ago)
- Last Synced: 2024-04-14T16:17:25.976Z (about 2 years ago)
- Topics: competitive-programming, contest-programming, cool-stuff, cpp11, leetcode-python, leetcode-solutions, python3
- Language: Python
- Homepage:
- Size: 173 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Competitive-Prgrmr-s-Handbook
(Competitive Programmer's Handbook)
What Is Competitive Programming?
Competitive programming combines two topics: the design of algorithms and the implementation of algorithms.
Design of Algorithms The core of competitive programming is about inventing efficient algorithms that solve well-defined computational problems. The design of algorithms requires problem-solving and mathematical skills. Often a solution to a problem is a combination of well-known methods and new insights
Implementation of Algorithms In competitive programming, the solution to problems are evaluated by testing an implemented algorithm using a ser of test cases. Thus, after coming up with an algorithm that solves the problem, the next step is to correctly implement it, which requires good programming skills. Competitive programing greatly differs from traditional software engineering. Programs are short (usually at most some hundreds of lines), they should be written quickly, and it is not needed to maintain them after the contest.