{"id":19057021,"url":"https://github.com/augustodevjs/programming-challenges","last_synced_at":"2025-07-09T04:38:24.742Z","repository":{"id":259233932,"uuid":"876991529","full_name":"augustodevjs/programming-challenges","owner":"augustodevjs","description":"This repository contains a collection of algorithms for problems (interview questions, coding challenges) that I have solved.","archived":false,"fork":false,"pushed_at":"2024-10-31T15:13:06.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-02T11:44:17.475Z","etag":null,"topics":["arrays","hashmap","stack","two-pointers"],"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/augustodevjs.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":"2024-10-22T22:37:05.000Z","updated_at":"2024-10-31T15:15:29.000Z","dependencies_parsed_at":"2025-01-02T11:42:10.979Z","dependency_job_id":"29548dff-52b3-4b01-a0fd-69e497cbfc5e","html_url":"https://github.com/augustodevjs/programming-challenges","commit_stats":null,"previous_names":["augustodevjs/programming-challenges"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augustodevjs%2Fprogramming-challenges","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augustodevjs%2Fprogramming-challenges/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augustodevjs%2Fprogramming-challenges/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augustodevjs%2Fprogramming-challenges/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/augustodevjs","download_url":"https://codeload.github.com/augustodevjs/programming-challenges/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240113944,"owners_count":19749829,"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":["arrays","hashmap","stack","two-pointers"],"created_at":"2024-11-08T23:53:07.112Z","updated_at":"2025-02-22T01:40:21.880Z","avatar_url":"https://github.com/augustodevjs.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Programming Challenges\n\nWelcome to the **Programming Challenges** repository! This collection includes a range of algorithmic solutions for coding challenges and interview questions.\n\n## Stack\n\n| #  | Problem                            | Description Link                                                             |\n|----|------------------------------------|------------------------------------------------------------------------------|\n| 1  | Implement Stack Using Queues       | [Link](https://leetcode.com/problems/implement-stack-using-queues)           |\n| 2  | Make the String Great              | [Link](https://leetcode.com/problems/make-the-string-great)        |\n| 3  | Next Greater Element I             | [Link](https://leetcode.com/problems/next-greater-element-i)       |\n| 4  | Remove All Adjacent Duplicates     | [Link](https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string) |\n| 5  | Valid Parentheses                  | [Link](https://leetcode.com/problems/valid-parentheses)                      |\n\n---\n\n## HashMap\n\n| #  | Problem                            | Description Link                                                      |\n|----|------------------------------------|-----------------------------------------------------------------------|\n| 1  | Contains Duplicate II              | [Link](https://leetcode.com/problems/contains-duplicate-ii)           |\n| 2  | Find the Difference                | [Link](https://leetcode.com/problems/find-the-difference)             |\n| 3  | First Unique Character in a String | [Link](https://leetcode.com/problems/first-unique-character-in-a-string) |\n| 4  | Intersection of Two Arrays II      | [Link](https://leetcode.com/problems/intersection-of-two-arrays-ii)   |\n| 5  | Intersection of Two Arrays         | [Link](https://leetcode.com/problems/intersection-of-two-arrays)      |\n| 6  | Longest Palindrome                 | [Link](https://leetcode.com/problems/longest-palindrome)              |\n| 7  | Majority Element                   | [Link](https://leetcode.com/problems/majority-element)                |\n| 8  | Maximum Number of Balloons         | [Link](https://leetcode.com/problems/maximum-number-of-balloons/description) |\n| 9  | Single Number                      | [Link](https://leetcode.com/problems/single-number)                   |\n| 10 | Two Sum                            | [Link](https://leetcode.com/problems/two-sum/description)             |\n| 11 | Valid Anagram                      | [Link](https://leetcode.com/problems/valid-anagram)                   |\n| 12 | Ransom Note                        | [Link](https://leetcode.com/problems/ransom-note)                     |\n| 13 | Jewels and Stones                  | [Link](https://leetcode.com/problems/jewels-and-stones)                 |\n| 14 | Contains Duplicate                 | [Link](https://leetcode.com/problems/contains-duplicate)                |\n\n---\n\n## Arrays \n\n| #  | Problem                                    | Description Link                                            |\n|----|--------------------------------------------|-------------------------------------------------------------|\n| 1  | Find Closest Number to Zero                | [Link](https://leetcode.com/problems/find-closest-number-to-zero) |\n| 2  | Binary Search                              | [Link](https://leetcode.com/problems/binary-search)         |\n| 3  | Apply Operations to an Array               | [Link](https://leetcode.com/problems/apply-operations-to-an-array) |\n| 4  | Remove Duplicates from Sorted Array       | [Link](https://leetcode.com/problems/remove-duplicates-from-sorted-array) |\n| 5  | Remove Element                             | [Link](https://leetcode.com/problems/remove-element)        |\n| 6  | Reverse String                             | [Link](https://leetcode.com/problems/reverse-string)        |\n| 7  | Reverse Vowels of a String                | [Link](https://leetcode.com/problems/reverse-vowels-of-a-string) |\n| 8  | Squares of a Sorted Array                 | [Link](https://leetcode.com/problems/squares-of-a-sorted-array) |\n| 9  | Two Sum II - Input Array Is Sorted        | [Link](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted) |\n| 10 | Valid Palindrome                           | [Link](https://leetcode.com/problems/valid-palindrome)      |\n\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faugustodevjs%2Fprogramming-challenges","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faugustodevjs%2Fprogramming-challenges","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faugustodevjs%2Fprogramming-challenges/lists"}