{"id":16108079,"url":"https://github.com/makaveli10/leetcode-solutions","last_synced_at":"2025-04-06T04:19:29.614Z","repository":{"id":134713155,"uuid":"284884774","full_name":"makaveli10/leetcode-solutions","owner":"makaveli10","description":"Solution to LeetCode problems in C++.","archived":false,"fork":false,"pushed_at":"2021-04-09T12:44:23.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-12T10:21:07.235Z","etag":null,"topics":["binary-search-tree","data-structures","graph-algorithms","leetcode-problems-solutions","leetcode-solutions","problem-solving"],"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/makaveli10.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,"publiccode":null,"codemeta":null}},"created_at":"2020-08-04T05:21:41.000Z","updated_at":"2021-04-09T12:44:25.000Z","dependencies_parsed_at":"2023-06-14T02:46:07.779Z","dependency_job_id":null,"html_url":"https://github.com/makaveli10/leetcode-solutions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makaveli10%2Fleetcode-solutions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makaveli10%2Fleetcode-solutions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makaveli10%2Fleetcode-solutions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makaveli10%2Fleetcode-solutions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/makaveli10","download_url":"https://codeload.github.com/makaveli10/leetcode-solutions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247431274,"owners_count":20937923,"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":["binary-search-tree","data-structures","graph-algorithms","leetcode-problems-solutions","leetcode-solutions","problem-solving"],"created_at":"2024-10-09T19:25:20.095Z","updated_at":"2025-04-06T04:19:29.470Z","avatar_url":"https://github.com/makaveli10.png","language":"C++","readme":"# Leetcode Solutions\nSome of the leetcode problems solved in C++. If you find a more optimal approach most welcome to submit a Pull request.\n\n1. [Add One row to tree](https://leetcode.com/problems/add-one-row-to-tree/submissions/) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/addOneRowToTree.cpp)\n2. [Arithmetic Slices](https://leetcode.com/problems/arithmetic-slices/) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/arithmeticSlices.cpp)\n3. [Clone Graph](https://leetcode.com/problems/clone-graph/) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/cloneGraph.cpp)\n4. [Container with most water](https://leetcode.com/problems/container-with-most-water/) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/containerWithMostWater.cpp)\n5. [Kids with greatest number of candies](https://leetcode.com/problems/kids-with-the-greatest-number-of-candies) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/KidsWithGreatestCandies.cpp)\n6. [The K weakest rows in a matrix](https://leetcode.com/problems/the-k-weakest-rows-in-a-matrix) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/kWeakestRows.cpp)\n7. [Letter case permutation](https://leetcode.com/problems/letter-case-permutation) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/letterCasePermutation.cpp)\n8. [Linked List Cycle](https://leetcode.com/problems/linked-list-cycle) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/linkedListCycle.cpp)\n9. [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/MergeSortedList.cpp)\n10. [Number of 1 bits](https://leetcode.com/problems/number-of-1-bits) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/numberOf1Bits.cpp)\n11. [Palindrome Number](https://leetcode.com/problems/palindrome-number) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/PalindromeNumber.cpp)\n12. [Palindrome Linked List](https://leetcode.com/problems/palindrome-linked-list) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/PalindromeLinkedList.cpp)\n13. [Remove Duplicates from sorted array](https://leetcode.com/problems/remove-duplicates-from-sorted-array) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/RemoevDuplicates.cpp)\n14. [Remove Element](https://leetcode.com/problems/remove-element) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/RemoveElement.cpp)\n15. [Reverse Integer](https://leetcode.com/problems/reverse-integer) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/ReverseInteger.cpp)\n16. [Running Sum](https://leetcode.com/problems/running-sum-of-1d-array) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/RunningSum.cpp)\n17. [Shuffle the array](https://leetcode.com/problems/shuffle-the-array) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/ShuffleTheArray.cpp)\n18. [Trim BST](https://leetcode.com/problems/trim-a-binary-search-tree) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/trimBST.cpp)\n19. [Keys And Rooms](https://leetcode.com/problems/keys-and-rooms) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/keysAndRooms.cpp)\n20. [Russian Doll Envelopes](https://leetcode.com/problems/russian-doll-envelopes/) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/russianDollEnvelopes.cpp)\n21. [Flip Binary Tree to Match Preorder Traversal](https://leetcode.com/problems/flip-binary-tree-to-match-preorder-traversal/) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/flipBinaryTreeToMatchPreorderTraversal.cpp)\n22. [Minimum Operations to Make Array Equal](https://leetcode.com/problems/minimum-operations-to-make-array-equal/) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/minimumOperationstoMakeArrayEqual.cpp)\n22. [Letter Combinations Phone Number](https://leetcode.com/problems/letter-combinations-of-a-phone-number/) -- [Solution](https://github.com/makaveli10/leetcode-solutions/blob/master/cpp/letterCombinationsPhoneNumber.cpp)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmakaveli10%2Fleetcode-solutions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmakaveli10%2Fleetcode-solutions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmakaveli10%2Fleetcode-solutions/lists"}