{"id":18745573,"url":"https://github.com/dickeyy/leetcode","last_synced_at":"2025-11-23T11:30:17.676Z","repository":{"id":162856500,"uuid":"503523386","full_name":"dickeyy/leetcode","owner":"dickeyy","description":"just a repo of all the leetcode problems ive solved","archived":false,"fork":false,"pushed_at":"2024-12-09T23:26:55.000Z","size":72,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-28T20:25:22.394Z","etag":null,"topics":["leetcode"],"latest_commit_sha":null,"homepage":"https://leetcode.com/dickey","language":"TypeScript","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/dickeyy.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":"2022-06-14T21:18:06.000Z","updated_at":"2024-12-09T23:26:58.000Z","dependencies_parsed_at":"2023-12-05T02:28:02.775Z","dependency_job_id":"0a3abf2e-d6c9-4f28-b0e6-454d9a4a8373","html_url":"https://github.com/dickeyy/leetcode","commit_stats":null,"previous_names":["dickeyy/leetcode"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dickeyy%2Fleetcode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dickeyy%2Fleetcode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dickeyy%2Fleetcode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dickeyy%2Fleetcode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dickeyy","download_url":"https://codeload.github.com/dickeyy/leetcode/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239627233,"owners_count":19670844,"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":["leetcode"],"created_at":"2024-11-07T16:18:41.193Z","updated_at":"2025-11-23T11:30:17.606Z","avatar_url":"https://github.com/dickeyy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Leetcode Solutions - Total: 76](https://leetcode.com/dickey)\n\n[![wakatime](https://wakatime.com/badge/github/dickeyy/leetcode.svg)](https://wakatime.com/badge/github/dickeyy/leetcode)\n\n## Stats\n\n_Last Updated 12/9/24_\n\n```\n- Total Solved: 76/3374 (2.22%)\n- Easy Solved: 53/842 (6.17%)\n- Medium Solved: 19/1766 (1.08%)\n- Hard Solved: 4/776 (0.52%)\n- Rank: 1,307,561\n- Acceptance Rate: 61.59%\n```\n\n## Hard Problems - 4/776\n\nBeats: 40.58% users\n\n| #    | Title                                                                                    | Solution(s)              |\n| ---- | ---------------------------------------------------------------------------------------- | ------------------------ |\n| 4    | [Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays) | [TS](/hard/4/4.ts)       |\n| 65   | [Valid Number](https://leetcode.com/problems/valid-number/)                              | [TS](/hard/65/65.ts)     |\n| 458  | [Poor Pigs](https://leetcode.com/problems/poor-pigs)                                     | [TS](/hard/458/458.ts)   |\n| 2097 | [Valid Arrangement](https://leetcode.com/problems/valid-arrangement)                     | [Go](/hard/2097/main.go) |\n\n## Medium Problems - 19/1766\n\nBeats: 55.55% users\n\n| #    | Title                                                                                                                                                  | Solution(s)                |\n| ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |\n| 2    | [Add Two Numbers](https://leetcode.com/problems/add-two-numbers)                                                                                       | [JS](/medium/2/2.js)       |\n| 3    | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters)                         | [TS](/medium/3/3.ts)       |\n| 5    | [Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring)                                                           | [Go](/medium/5/main.go)    |\n| 8    | [String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/)                                                                      | [Go](/medium/8/main.go)    |\n| 12   | [Integer to Roman](https://leetcode.com/problems/integer-to-roman)                                                                                     | [TS](/medium/12/12.ts)     |\n| 15   | [3Sum](https://leetcode.com/problems/3sum)                                                                                                             | [TS](/medium/15/15.ts)     |\n| 22   | [Generate Parentheses](https://leetcode.com/problems/generate-parentheses)                                                                             | [TS](/medium/22/22.ts)     |\n| 50   | [Pow(x,n)](https://leetcode.com/problems/powx-n)                                                                                                       | [TS](/medium/50/50.ts)     |\n| 176  | [Second Highest Salary](https://leetcode.com/problems/second-highest-salary)                                                                           | [SQL](/medium/176/176.sql) |\n| 525  | [Contiguous Array](https://leetcode.com/problems/contiguous-array)                                                                                     | [TS](/medium/525/525.ts)   |\n| 535  | [Encode and Decode TinyURL](https://leetcode.com/problems/encode-and-decode-tinyurl/)                                                                  | [TS](/medium/535/535.ts)   |\n| 678  | [Valid Parenthesis String](https://leetcode.com/problems/valid-parenthesis-string/description/?envType=daily-question\u0026envId=2024-04-07)                | [TS](/medium/678/678.ts)   |\n| 1302 | [Deepest Leaves Sum](https://leetcode.com/problems/deepest-leaves-sum)                                                                                 | [Go](/medium/1302/main.go) |\n| 1689 | [Partitioning Into Minimum Number Of Deci-Binary Numbers](https://leetcode.com/problems/partitioning-into-minimum-number-of-deci-binary-numbers)       | [TS](/medium/1669/1689.ts) |\n| 1750 | [Minimum Length of String After Deleting Similar Ends](https://leetcode.com/problems/minimum-length-of-string-after-deleting-similar-ends)             | [TS](/medium/1750/1750.ts) |\n| 2109 | [Adding Spaces to a String](https://leetcode.com/problems/adding-spaces-to-a-string)                                                                   | [Go](/medium/2109/main.go) |\n| 2396 | [Strictly Palindromic Number](https://leetcode.com/problems/strictly-palindromic-number)                                                               | [TS](/medium/2396/2396.ts) |\n| 2442 | [Count Number of Distinct Integers After Reverse Operations](https://leetcode.com/problems/count-number-of-distinct-integers-after-reverse-operations) | [TS](/medium/2442/2442.ts) |\n| 2610 | [Convert an Array Into a 2D Array With Conditions](https://leetcode.com/problems/convert-an-array-into-a-2d-array-with-conditions)                     | [TS](/medium/2610/2610.ts) |\n\n## Easy Problems - 53/842\n\nBeats: 78.29% of users\n\n| #     | Title                                                                                                                                                      | Solution(s)                                                                        |\n| ----- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |\n| 1     | [Two Sum](https://leetcode.com/problems/two-sum)                                                                                                           | [JS](/easy/1/1.js) [TS](/easy/1/1.ts) [Python](/easy/1/1.py) [Go](/easy/1/main.go) |\n| 9     | [Palindrome Numbers](https://leetcode.com/problems/palindrome-number)                                                                                      | [JS](/easy/9/9.js)                                                                 |\n| 13    | [Roman to Integer](https://leetcode.com/problems/roman-to-integer)                                                                                         | [JS](/easy/13/13.js)                                                               |\n| 14    | [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix)                                                                               | [TS](/easy/14/14.ts)                                                               |\n| 21    | [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists)                                                                             | [TS](/easy/21/21.ts)                                                               |\n| 26    | [Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array)                                                   | [TS](/easy/26/26.ts)                                                               |\n| 27    | [Remove Element](https://leetcode.com/problems/remove-element)                                                                                             | [TS](/easy/27/27.ts)                                                               |\n| 28    | [Find the Index of the First Occurrence in a String](https://leetcode.com/problems/find-the-index-of-the-first-occurrence-in-a-string)                     | [Go](/easy/28/main.go)                                                             |\n| 35    | [Search Insert Position](https://leetcode.com/problems/search-insert-position)                                                                             | [Go](/easy/35/main.go)                                                             |\n| 58    | [Length of Last Word](https://leetcode.com/problems/length-of-last-word)                                                                                   | [JS](/easy/58/58.js)                                                               |\n| 66    | [Plus One](https://leetcode.com/problems/plus-one)                                                                                                         | [JS](/easy/66/66.js)                                                               |\n| 67    | [Add Binary](https://leetcode.com/problems/add-binary)                                                                                                     | [Go](/easy/67/main.go)                                                             |\n| 125   | [Valid Palindrome](https://leetcode.com/problems/valid-palindrome)                                                                                         | [TS](/easy/125/125.ts)                                                             |\n| 141   | [Linked List Cycle](https://leetcode.com/problems/linked-list-cycle)                                                                                       | [TS](/easy/141/141.ts)                                                             |\n| 217   | [Contains Duplicate](https://leetcode.com/problems/contains-duplicate)                                                                                     | [JS](/easy/217/217.js)                                                             |\n| 268   | [Missing Number](https://leetcode.com/problems/missing-number)                                                                                             | [TS](/easy/268/268.ts)                                                             |\n| 283   | [Move Zeros](https://leetcode.com/problems/move-zeroes)                                                                                                    | [JS](/easy/283/283.js)                                                             |\n| 349   | [Intersection of Two Arrays](https://leetcode.com/problems/intersection-of-two-arrays)                                                                     | [TS](/easy/349/349.ts)                                                             |\n| 412   | [FizzBuzz](https://leetcode.com/problems/fizz-buzz)                                                                                                        | [TS](/easy/412/412.ts)                                                             |\n| 476   | [Number Complement](https://leetcode.com/problems/number-complement)                                                                                       | [TS](/easy/476/476.ts)                                                             |\n| 876   | [Middle of the Linked List](https://leetcode.com/problems/middle-of-the-linked-list)                                                                       | [TS](/easy/876/876.ts)                                                             |\n| 1071  | [Greatest Common Divisor of Strings](https://leetcode.com/problems/greatest-common-divisor-of-strings)                                                     | [TS](/easy/1071/1071.ts)                                                           |\n| 1108  | [Defanging an IP Address](https://leetcode.com/problems/defanging-an-ip-address)                                                                           | [TS](/easy/1108/1108.ts)                                                           |\n| 1346  | [Check If N and Its Double Exist](https://leetcode.com/problems/check-if-n-and-its-double-exist)                                                           | [Go](/easy/1346/main.go)                                                           |\n| 1431  | [Kids With the Greatest Number of Candies](https://leetcode.com/problems/kids-with-the-greatest-number-of-candies/)                                        | [TS](/easy/1431/1431.ts)                                                           |\n| 1455  | [Check If a Word Occurs As a Prefix of Any Word in a Sentence](https://leetcode.com/problems/check-if-a-word-occurs-as-a-prefix-of-any-word-in-a-sentence) | [Go](/easy/1455/main.go)                                                           |\n| 1464  | [Maximum Product of Two Elements in an Array](https://leetcode.com/problems/maximum-product-of-two-elements-in-an-array)                                   | [TS](/easy/1464/1464.ts)                                                           |\n| 1512  | [Number of Good Pairs](https://leetcode.com/problems/number-of-good-pairs/)                                                                                | [TS](/easy/1512/1512.ts)                                                           |\n| 1672  | [Richest Customer Wealth](https://leetcode.com/problems/richest-customer-wealth)                                                                           | [TS](/easy/1672/1672.ts)                                                           |\n| 1688  | [Count of Matches in Tournament](https://leetcode.com/problems/count-of-matches-in-tournament)                                                             | [TS](/easy/1688/1688.ts)                                                           |\n| 1716  | [Calculate Money in Leetcode Bank](https://leetcode.com/problems/calculate-money-in-leetcode-bank)                                                         | [TS](/easy/1716/1716.ts)                                                           |\n| 17498 | [Sum of Unique Elements](https://leetcode.com/problems/sum-of-unique-elements)                                                                             | [Go](/easy/1748/main.go)                                                           |\n| 1757  | [Recyclable and Low Fat Products](https://leetcode.com/problems/recyclable-and-low-fat-products)                                                           | [SQL](/easy/1757/1757.sql)                                                         |\n| 1768  | [Merge Strings Alternately](https://leetcode.com/problems/merge-strings-alternately)                                                                       | [TS](/easy/1768/1768.ts)                                                           |\n| 1791  | [Find Center of Star Graph](https://leetcode.com/problems/find-center-of-star-graph)                                                                       | [TS](/easy/1791/1791.ts)                                                           |\n| 1859  | [Sorting the Sentence](https://leetcode.com/problems/sorting-the-sentence)                                                                                 | [JS](/easy/1859/1859.js)                                                           |\n| 1903  | [Largest Odd Number in String](https://leetcode.com/problems/largest-odd-number-in-string)                                                                 | [TS](/easy/1903/1903.ts)                                                           |\n| 1920  | [Build Array from Permutation](https://leetcode.com/problems/build-array-from-permutation)                                                                 | [Go](/easy/1920/1920/main.go)                                                      |\n| 1929  | [Concatenation of Array](https://leetcode.com/problems/concatenation-of-array/)                                                                            | [TS](/easy/1929/1929.ts)                                                           |\n| 2011  | [Final Value of Variable After Performing Operations](https://leetcode.com/problems/final-value-of-variable-after-performing-operations)                   | [TS](/easy/2011/2011.ts) [Python](/easy/2011/2011.py) [Go](/easy/2011/main.go)     |\n| 2185  | [Counting Words With a Given Prefix](https://leetcode.com/problems/counting-words-with-a-given-prefix/)                                                    | [TS](/easy/2185/2185.ts)                                                           |\n| 2215  | [Find the Difference of Two Arrays](https://leetcode.com/problems/find-the-difference-of-two-arrays/)                                                      | [TS](/easy/2215/2215.ts)                                                           |\n| 2235  | [Add Two Integers](https://leetcode.com/problems/add-two-integers/)                                                                                        | [Go](/easy/2235/main.go)                                                           |\n| 2469  | [Convert the Temperature](https://leetcode.com/problems/convert-the-temperature)                                                                           | [TS](/easy/2469/2469.ts)                                                           |\n| 2540  | [Minimum Common Value](https://leetcode.com/problems/minimum-common-value)                                                                                 | [TS](/easy/2540/2540.ts)                                                           |\n| 2667  | [Create Hello World Function](https://leetcode.com/problems/create-hello-world-function)                                                                   | [JS](/easy/2667/2667.js)                                                           |\n| 2678  | [Number of Senior Citizens](https://leetcode.com/problems/number-of-senior-citizens)                                                                       | [TS](/easy/2678/2678.ts)                                                           |\n| 2703  | [Return Length of Arguments Passed](https://leetcode.com/problems/return-length-of-arguments-passed)                                                       | [TS](/easy/2703/2703.ts)                                                           |\n| 2723  | [Add Two Promises](https://leetcode.com/problems/add-two-promises)                                                                                         | [TS](/easy/2723/2723.ts)                                                           |\n| 2769  | [Find the Maximum Achievable Number](https://leetcode.com/problems/find-the-maximum-achievable-number)                                                     | [Go](/easy/2769/main.go)                                                           |\n| 2942  | [Find Words Containing Character](https://leetcode.com/problems/find-words-containing-character)                                                           | [TS](/easy/2942/2942.ts)                                                           |\n| 3005  | [Count Elements With Maximum Frequency](https://leetcode.com/problems/count-elements-with-maximum-frequency)                                               | [TS](/easy/3005/3005.ts)                                                           |\n| 3110  | [Score of a String](https://leetcode.com/problems/score-of-a-string/)                                                                                      | [Go](/easy/3110/main.go)                                                           |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdickeyy%2Fleetcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdickeyy%2Fleetcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdickeyy%2Fleetcode/lists"}