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

https://github.com/hrishibawane/cses-problem-set-solutions

Solutions to CSES Problem Set
https://github.com/hrishibawane/cses-problem-set-solutions

algorithms cses-solutions data-structures

Last synced: 7 months ago
JSON representation

Solutions to CSES Problem Set

Awesome Lists containing this project

README

          

# cses-problem-set-solutions

Solutions to CSES Problem Set

Here is the link to the [CSES problem set site](https://cses.fi/problemset/)

Notes:
- **Graph Problems**:
1. *Shortest Path in Unweighted Graph* => DS: Adj list, Algo: BFS(with distance and predecessor track)

2. *Min. edges to make graph connected* => No. of connected components - 1

3. *Bipartite check* => DS: Adj list, Algo: BFS(graph coloring with 2-colors)