{"id":15047367,"url":"https://github.com/sumeetgedam/cses","last_synced_at":"2026-02-09T21:35:11.336Z","repository":{"id":233101031,"uuid":"785062816","full_name":"sumeetgedam/CSES","owner":"sumeetgedam","description":"Repository to record CSES solved problems","archived":false,"fork":false,"pushed_at":"2024-04-13T10:54:49.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-13T21:14:11.339Z","etag":null,"topics":["algorithms","algorithms-and-data-structures","cpp11","cses","cses-problem-set-solution","data-structures","maths","searching","sorting"],"latest_commit_sha":null,"homepage":"","language":"C++","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/sumeetgedam.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,"dei":null}},"created_at":"2024-04-11T05:49:35.000Z","updated_at":"2024-04-17T07:37:07.669Z","dependencies_parsed_at":"2024-04-17T07:37:06.975Z","dependency_job_id":"a0c0b32e-e047-4e5c-8521-905dcf7725eb","html_url":"https://github.com/sumeetgedam/CSES","commit_stats":null,"previous_names":["sumeetgedam/cses"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sumeetgedam%2FCSES","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sumeetgedam%2FCSES/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sumeetgedam%2FCSES/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sumeetgedam%2FCSES/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sumeetgedam","download_url":"https://codeload.github.com/sumeetgedam/CSES/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243473915,"owners_count":20296660,"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","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","algorithms-and-data-structures","cpp11","cses","cses-problem-set-solution","data-structures","maths","searching","sorting"],"created_at":"2024-09-24T20:57:12.277Z","updated_at":"2026-02-09T21:35:11.243Z","avatar_url":"https://github.com/sumeetgedam.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CSES\n\nSolutions for [CSES problem set](https://cses.fi/problemset/) \\\nIf you want to add any optimization or spot a bug, feel free to raise a pull request.\n\n### Introductory Problems\n\n| Problem Link | My Solution |\n| :------------ | :-----------: |\n| [Weird Algorithm](https://cses.fi/problemset/task/1068) | [Solution](./Introductory_Problems/Weird_Algorithm.cpp) |\n| [Missing Number](https://cses.fi/problemset/task/1083) | [Solution](./Introductory_Problems/Missing_Number.cpp) |\n| [Repetitions](https://cses.fi/problemset/task/1069) | [Solution](./Introductory_Problems/Repetitions.cpp) |\n| [Increasing Array](https://cses.fi/problemset/task/1094) | [Solution](./Introductory_Problems/Increasing_Array.cpp) |\n| [Permutations](https://cses.fi/problemset/task/1070/) | [Solution](./Introductory_Problems/Permutations.cpp) |\n| [Bit Strings](https://cses.fi/problemset/task/1617/) | [Solution](./Introductory_Problems/Bit_Strings.cpp) |\n| [Trailing Zeros](https://cses.fi/problemset/task/1618) | [Solution](./Introductory_Problems/Trailing_Zeros.cpp) |\n| [Two Sets](https://cses.fi/problemset/task/1092/) | [Solution](./Introductory_Problems/Two_Sets.cpp) |\n| [Coin Piles](https://cses.fi/problemset/task/1754/) | [Solution](./Introductory_Problems/Coin_Piles.cpp) |\n| [Creating Strings](https://cses.fi/problemset/task/1622) | [Solution](./Introductory_Problems/Creating_Strings.cpp) |\n| [Palindrome Reorder](https://cses.fi/problemset/task/1755) | [Solution](./Introductory_Problems/Palindrome_Reorder.cpp) |\n| [Gray Code](https://cses.fi/problemset/task/2205/) | [Solution](./Introductory_Problems/Gray_Code.cpp) |\n| [Tower of Hanoi](https://cses.fi/problemset/task/2165/)  | [Solution](./Introductory_Problems/Tower_of_Hanoi.cpp) |\n| [Chessboard and Queens](https://cses.fi/problemset/task/1624/) |  [Solution](./Introductory_Problems/Chessboard_and_Queens.cpp) |\n\n\n### Sorting and Searching\n\n| Problem Link | My Solution |\n| :------------ | :-----------: |\n| [Distinct Numbers](https://cses.fi/problemset/task/1621/) | [Solution](./Sorting_and_Searching/Distinct_Numbers.cpp) |\n| [Apartments](https://cses.fi/problemset/task/1084/) | [Solution](./Sorting_and_Searching/Apartments.cpp) |\n| [Sum of Two Values](https://cses.fi/problemset/result/9002551/) | [Solution](./Sorting_and_Searching/Sum_of_Two_Values.cpp) |\n| [Maximum Subarray Sum](https://cses.fi/problemset/task/1643/) | [Solution](./Sorting_and_Searching/Maximum_Subarray_Sum.cpp) |\n| [Restaurant Customers](https://cses.fi/problemset/task/1619/) | [Solution](./Sorting_and_Searching/Restaurant_Customers.cpp) |\n| [Movie Festival](https://cses.fi/problemset/task/1629/) | [Solution](./Sorting_and_Searching/Movie_Festival.cpp) |\n| [Towers](https://cses.fi/problemset/task/1073/) | [Solution](./Sorting_and_Searching/Towers.cpp) |\n| [Playlist](https://cses.fi/problemset/task/1141) | [Solution](./Sorting_and_Searching/Playlist.cpp) |\n| [Collecting Numbers](https://cses.fi/problemset/task/2216/) | [Solution](./Sorting_and_Searching/Collecting_Numbers.cpp) |\n| [Missing Coin Sum](https://cses.fi/problemset/result/9035118/) | [Solution](./Sorting_and_Searching/Missing_Coin_Sum.cpp) |\n\n\n### Dynamic Programming\n\n| Problem Link | My Solution |\n| :------------ | :-----------: |\n| [Dice Combinations](https://cses.fi/problemset/task/1633/) | [Solution](./Dynamic_Programming/Dice_Combinations.cpp) |\n| [Minimizing Coins](https://cses.fi/problemset/task/1634/) | [Solution](./Dynamic_Programming/Minimizing_Coins.cpp) |\n| [Coin Combinations I](https://cses.fi/problemset/task/1635/) | [Solution](./Dynamic_Programming/Coin_Combinations_I.cpp) |\n| [Coin Combinations II](https://cses.fi/problemset/task/1636/) | [Solution](./Dynamic_Programming/Coin_Combinations_II.cpp) |","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsumeetgedam%2Fcses","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsumeetgedam%2Fcses","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsumeetgedam%2Fcses/lists"}