https://github.com/data-miner00/codeforces
My inefficient, naive and unoptimized solution to challenges on https://codeforces.com/
https://github.com/data-miner00/codeforces
codeforces cpp leetcode
Last synced: 3 months ago
JSON representation
My inefficient, naive and unoptimized solution to challenges on https://codeforces.com/
- Host: GitHub
- URL: https://github.com/data-miner00/codeforces
- Owner: data-miner00
- Created: 2021-07-15T08:53:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-27T11:41:18.000Z (about 2 years ago)
- Last Synced: 2025-06-15T13:08:45.078Z (4 months ago)
- Topics: codeforces, cpp, leetcode
- Language: C++
- Homepage:
- Size: 199 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
Codeforces
A repository that stores solutions to various programming challenges.
Accept the challenge »
Randomizer
·
Leetcode
·
Hackerrank
·
HackerEarth
Originally started out as a storage repository to store all of the solutions for challenges on [Codeforce](https://codeforces.com/problemset?order=BY_RATING_ASC), but have turned into storing other relevant challenges such as [Leetcode](https://leetcode.com/) and [Hackerrank](https://www.hackerrank.com/) as well.
Additionally, this repo is used to store code snippets for various concepts and operations that are commonly used, as well as documenting resources that can help to improve the programming skills.
## Programming Language
The main language that are used in the challenges is C++, other languages such as Rust and Go will be featured from time to time.
## Resources
- C++
- [cs.niu](http://faculty.cs.niu.edu/~mcmahon/CS241/c241man/node1.html)
- [w3schools](https://www.w3schools.com/cpp/cpp_examples.asp)
- [Programiz](https://www.programiz.com/cpp-programming/examples)## Articles
- C++
- [8 Neat C++ Programming Tricks You Should Know](https://betterprogramming.pub/8-neat-c-programming-tricks-you-should-know-be331b828be1)## Compilation
### New
Just copy the entire content for the solution into any executable `.cpp` source file and run.
### Legacy
Include the relevant files in main.cpp and run
```sh
g++ attempts/4A/solution4A.cpp main.cpp -o main.out && main.out
```