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

https://github.com/akazad13/competitive-programming

This repository contains all the codes and programs of my competitive programming life. This includes Algorithm & data structure theoretical coding, solution of different online judge's problems and supplementary topics.
https://github.com/akazad13/competitive-programming

Last synced: 6 months ago
JSON representation

This repository contains all the codes and programs of my competitive programming life. This includes Algorithm & data structure theoretical coding, solution of different online judge's problems and supplementary topics.

Awesome Lists containing this project

README

          

# Competitive Programming
This repository contains all the codes and programs of my competitive programming life. This includes Algorithm & and data structure theoretical coding, solutions to different online judge's problems, and supplementary topics.

Checklist:
1. Can I solve the sub-problem of that problem?
2. Can I solve the whole problem?
3. Do I check the parameter?
4. Did I clear all the memory?
5. check whether DP is cleared
6. Understand the prob?! check again!!!

## Table of Contents

### Algorithms and Data Structures

#### Sorting

- [Counting Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Counting%20Sort)
- [Radix Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Radix%20Sort)
- [Merge Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Merge%20Sort)
- [Quick Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Quick%20Sort)
- [Heap Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Heap%20Sort)