{"id":24995304,"url":"https://github.com/akhmedovgg/algods","last_synced_at":"2026-04-27T23:36:02.398Z","repository":{"id":168701864,"uuid":"420486399","full_name":"akhmedovgg/AlgoDS","owner":"akhmedovgg","description":"List of LeetCode problems and their solutions in Objective-C and Swift programming languages","archived":false,"fork":false,"pushed_at":"2025-03-12T19:53:53.000Z","size":629,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-29T14:43:42.357Z","etag":null,"topics":["algorithms","leetcode","leetcode-solutions","objective-c","problem-solving","swift"],"latest_commit_sha":null,"homepage":"https://leetcode.com","language":"Objective-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/akhmedovgg.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":"2021-10-23T18:03:00.000Z","updated_at":"2025-03-12T19:53:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"1a363481-4ecb-43ba-b763-f3a1c32194c1","html_url":"https://github.com/akhmedovgg/AlgoDS","commit_stats":null,"previous_names":["akhmedovgg/leetcodesolutions-swift","akhmedovgg/algods"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/akhmedovgg/AlgoDS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akhmedovgg%2FAlgoDS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akhmedovgg%2FAlgoDS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akhmedovgg%2FAlgoDS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akhmedovgg%2FAlgoDS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akhmedovgg","download_url":"https://codeload.github.com/akhmedovgg/AlgoDS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akhmedovgg%2FAlgoDS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32360113,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","leetcode","leetcode-solutions","objective-c","problem-solving","swift"],"created_at":"2025-02-04T15:35:01.200Z","updated_at":"2026-04-27T23:36:02.373Z","avatar_url":"https://github.com/akhmedovgg.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LeetCode\n\n\nLeetCode Algorithm\n(Notes: \"🔒\" means you need to buy a book from Leetcode)\n\n| # | Title | Solution | Difficulty |\n| --- | --------- | ----- | ---- |\n| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) |  [Objective-C](./LCObjective-C/LCObjective-C/Problems/TwoSum), [Swift](./LCSwift/LCSwift/Problems/TwoSum)| Easy |\n| 9 | [Palindrome Number](https://leetcode.com/problems/palindrome-number/) |  [Objective-C](./LCObjective-C/LCObjective-C/Problems/PalindromeNumber), [Swift](./LCSwift/LCSwift/Problems/PalindromeNumber)| Easy |\n| 13 | [Roman to Integer](https://leetcode.com/problems/roman-to-integer/) |  [Objective-C](./LCObjective-C/LCObjective-C/Problems/RomanToInteger), [Swift](./LCSwift/LCSwift/Problems/RomanToInteger)| Easy |\n| 14 | [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/) |  [Objective-C](./LCObjective-C/LCObjective-C/Problems/LongestCommonPrefix), [Swift](./LCSwift/LCSwift/Problems/LongestCommonPrefix)| Easy |\n| 20 | [Valid Parentheses](https://leetcode.com/problems/valid-parentheses/) |  [Objective-C](./LCObjective-C/LCObjective-C/Problems/ValidParentheses), [Swift](./LCSwift/LCSwift/Problems/ValidParentheses)| Easy |\n| 21 | [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) |  [Objective-C](./LCObjective-C/LCObjective-C/Problems/MergeTwoSortedLists), [Swift](./LCSwift/LCSwift/Problems/MergeTwoSortedLists)| Easy |\n| 26 | [Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) |  [Objective-C](./LCObjective-C/LCObjective-C/Problems/RemoveDuplicatesFromSortedArray), [Swift](./LCSwift/LCSwift/Problems/RemoveDuplicatesFromSortedArray)| Easy |\n| 27 | [Remove Element](https://leetcode.com/problems/remove-element/) |  [Objective-C](./LCObjective-C/LCObjective-C/Problems/RemoveElement), [Swift](./LCSwift/LCSwift/Problems/RemoveElement)| Easy |\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/) | [Objective-C](./LCObjective-C/LCObjective-C/Problems/FirstOccurrenceString), [Swift](./LCSwift/LCSwift/Problems/FirstOccurrenceString)| Easy |\n| 58 | [Length of Last Word](https://leetcode.com/problems/length-of-last-word/) | [Objective-C](./LCObjective-C/LCObjective-C/Problems/LengthOfLastWord), [Swift](./LCSwift/LCSwift/Problems/LengthOfLastWord)| Easy |\n| 66 | [Plus One](https://leetcode.com/problems/plus-one/) | [Swift](./LCSwift/LCSwift/Problems/PlusOne)| Easy |\n| 1342 | [Number of Steps to Reduce a Number to Zero](https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/) | [Swift](./LCSwift/LCSwift/Problems/NumberOfStepsToReduce)| Easy |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakhmedovgg%2Falgods","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakhmedovgg%2Falgods","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakhmedovgg%2Falgods/lists"}