{"id":32570490,"url":"https://github.com/3rfaan/cses","last_synced_at":"2025-10-29T08:17:21.986Z","repository":{"id":210774178,"uuid":"727425012","full_name":"3rfaan/cses","owner":"3rfaan","description":"CSES Problem Set Solutions in the Rust Programming Language","archived":false,"fork":false,"pushed_at":"2023-12-11T16:13:34.000Z","size":331,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-01-30T13:04:58.113Z","etag":null,"topics":["algorithms","cses","data-structures","problem","rust","set","solutions"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/3rfaan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-12-04T20:47:03.000Z","updated_at":"2024-01-10T09:24:01.000Z","dependencies_parsed_at":"2023-12-10T13:22:38.791Z","dependency_job_id":"9b644f3c-34b6-40f5-a6d4-c08914bb4c27","html_url":"https://github.com/3rfaan/cses","commit_stats":{"total_commits":15,"total_committers":1,"mean_commits":15.0,"dds":0.0,"last_synced_commit":"1e2616b867c7ccf1928cb3d87d51e1e103b0276e"},"previous_names":["3rfaan/cses"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/3rfaan/cses","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3rfaan%2Fcses","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3rfaan%2Fcses/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3rfaan%2Fcses/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3rfaan%2Fcses/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/3rfaan","download_url":"https://codeload.github.com/3rfaan/cses/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3rfaan%2Fcses/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281585528,"owners_count":26526310,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-29T02:00:06.901Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["algorithms","cses","data-structures","problem","rust","set","solutions"],"created_at":"2025-10-29T08:16:11.943Z","updated_at":"2025-10-29T08:17:21.981Z","avatar_url":"https://github.com/3rfaan.png","language":"Rust","readme":"# CSES Problem Set in Rust\n\nIn this repository you'll find my solutions to the [CSES Problem Set](https://cses.fi/problemset/).\n\n## Introductory Problems\n\n| No. | Exercise              | Doc                                  | Code                                        |\n| --- | --------------------- | ------------------------------------ | ------------------------------------------- |\n| 1   | Weird Algorithm       | [📝](./src/weird_algorithm.md)       | [📜](./src/bin/01_weird_algorithm.rs)       |\n| 2   | Missing Number        | [📝](./src/missing_number.md)        | [📜](./src/bin/02_missing_number.rs)        |\n| 3   | Repetitions           | [📝](./src/repetitions.md)           | [📜](./src/bin/03_repetitions.rs)           |\n| 4   | Increasing Array      | [📝](./src/increasing_array.md)      | [📜](./src/bin/04_increasing_array.rs)      |\n| 5   | Permutations          | [📝](./src/permutations.md)          | [📜](./src/bin/05_permutations.rs)          |\n| 6   | Number Spiral         | [📝](./src/number_spiral.md)         | [📜](./src/bin/06_number_spiral.rs)         |\n| 7   | Two Knights           | [📝](./src/two_knights.md)           | [📜](./src/bin/07_two_knights.rs)           |\n| 8   | Two Sets              | [📝](./src/two_sets.md)              | [📜](./src/bin/08_two_sets.rs)              |\n| 9   | Bit Strings           | [📝](./src/bit_strings.md)           | [📜](./src/bin/09_bit_strings.rs)           |\n| 10  | Trailing Zeros        | [📝](./src/trailing_zeros.md)        | [📜](./src/bin/10_trailing_zeros.rs)        |\n| 11  | Coin Piles            | [📝](./src/coin_piles.md)            | [📜](./src/bin/11_coin_piles.rs)            |\n| 12  | Palindrome Reorder    | [📝](./src/palindrome_reorder.md)    | [📜](./src/bin/12_palindrome_reorder.rs)    |\n| 13  | Gray Code             | [📝](./src/gray_code.md)             | [📜](./src/bin/13_gray_code.rs)             |\n| 14  | Tower of Hanoi        | [📝](./src/tower_of_hanoi.md)        | [📜](./src/bin/14_tower_of_hanoi.rs)        |\n| 15  | Creating Strings      | [📝](./src/creating_strings.md)      | [📜](./src/bin/15_creating_strings.rs)      |\n| 16  | Apple Division        | [📝](./src/apple_division.md)        | [📜](./src/bin/16_apple_division.rs)        |\n| 17  | Chessboard and Queens | [📝](./src/chessboard_and_queens.md) | [📜](./src/bin/17_chessboard_and_queens.rs) |\n| 18  | Digit Queries         | [📝](./src/digit_queries.md)         | [📜](./src/bin/18_digit_queries.rs)         |\n| 19  | Grid Paths            | n/a                                  | n/a                                         |\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3rfaan%2Fcses","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F3rfaan%2Fcses","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3rfaan%2Fcses/lists"}