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

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/

Awesome Lists containing this project

README

          



Logo

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
```