https://github.com/3rfaan/cses
CSES Problem Set Solutions in the Rust Programming Language
https://github.com/3rfaan/cses
algorithms cses data-structures problem rust set solutions
Last synced: 17 days ago
JSON representation
CSES Problem Set Solutions in the Rust Programming Language
- Host: GitHub
- URL: https://github.com/3rfaan/cses
- Owner: 3rfaan
- Created: 2023-12-04T20:47:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-11T16:13:34.000Z (almost 2 years ago)
- Last Synced: 2024-01-30T13:04:58.113Z (almost 2 years ago)
- Topics: algorithms, cses, data-structures, problem, rust, set, solutions
- Language: Rust
- Homepage:
- Size: 323 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CSES Problem Set in Rust
In this repository you'll find my solutions to the [CSES Problem Set](https://cses.fi/problemset/).
## Introductory Problems
| No. | Exercise | Doc | Code |
| --- | --------------------- | ------------------------------------ | ------------------------------------------- |
| 1 | Weird Algorithm | [📝](./src/weird_algorithm.md) | [📜](./src/bin/01_weird_algorithm.rs) |
| 2 | Missing Number | [📝](./src/missing_number.md) | [📜](./src/bin/02_missing_number.rs) |
| 3 | Repetitions | [📝](./src/repetitions.md) | [📜](./src/bin/03_repetitions.rs) |
| 4 | Increasing Array | [📝](./src/increasing_array.md) | [📜](./src/bin/04_increasing_array.rs) |
| 5 | Permutations | [📝](./src/permutations.md) | [📜](./src/bin/05_permutations.rs) |
| 6 | Number Spiral | [📝](./src/number_spiral.md) | [📜](./src/bin/06_number_spiral.rs) |
| 7 | Two Knights | [📝](./src/two_knights.md) | [📜](./src/bin/07_two_knights.rs) |
| 8 | Two Sets | [📝](./src/two_sets.md) | [📜](./src/bin/08_two_sets.rs) |
| 9 | Bit Strings | [📝](./src/bit_strings.md) | [📜](./src/bin/09_bit_strings.rs) |
| 10 | Trailing Zeros | [📝](./src/trailing_zeros.md) | [📜](./src/bin/10_trailing_zeros.rs) |
| 11 | Coin Piles | [📝](./src/coin_piles.md) | [📜](./src/bin/11_coin_piles.rs) |
| 12 | Palindrome Reorder | [📝](./src/palindrome_reorder.md) | [📜](./src/bin/12_palindrome_reorder.rs) |
| 13 | Gray Code | [📝](./src/gray_code.md) | [📜](./src/bin/13_gray_code.rs) |
| 14 | Tower of Hanoi | [📝](./src/tower_of_hanoi.md) | [📜](./src/bin/14_tower_of_hanoi.rs) |
| 15 | Creating Strings | [📝](./src/creating_strings.md) | [📜](./src/bin/15_creating_strings.rs) |
| 16 | Apple Division | [📝](./src/apple_division.md) | [📜](./src/bin/16_apple_division.rs) |
| 17 | Chessboard and Queens | [📝](./src/chessboard_and_queens.md) | [📜](./src/bin/17_chessboard_and_queens.rs) |
| 18 | Digit Queries | [📝](./src/digit_queries.md) | [📜](./src/bin/18_digit_queries.rs) |
| 19 | Grid Paths | n/a | n/a |