{"id":19066587,"url":"https://github.com/k66inthesky/leetcode-rust","last_synced_at":"2026-06-17T06:32:23.822Z","repository":{"id":221245263,"uuid":"753836447","full_name":"k66inthesky/Leetcode-Rust","owner":"k66inthesky","description":"Leetcode Blind75 in Rust 表格整理及詳解","archived":false,"fork":false,"pushed_at":"2026-01-01T23:56:26.000Z","size":11,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-07T12:12:39.325Z","etag":null,"topics":["blind75","leetcode","rust"],"latest_commit_sha":null,"homepage":"https://www.youtube.com/@k66inthesky","language":"Rust","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/k66inthesky.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-02-06T22:00:34.000Z","updated_at":"2026-01-01T23:56:29.000Z","dependencies_parsed_at":"2024-02-06T23:29:45.150Z","dependency_job_id":"aa2a4ae3-af88-46be-bb63-37d3ed2a1b59","html_url":"https://github.com/k66inthesky/Leetcode-Rust","commit_stats":null,"previous_names":["k66inthesky/leetcode-rust"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/k66inthesky/Leetcode-Rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k66inthesky%2FLeetcode-Rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k66inthesky%2FLeetcode-Rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k66inthesky%2FLeetcode-Rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k66inthesky%2FLeetcode-Rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/k66inthesky","download_url":"https://codeload.github.com/k66inthesky/Leetcode-Rust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k66inthesky%2FLeetcode-Rust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34437449,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["blind75","leetcode","rust"],"created_at":"2024-11-09T00:57:25.125Z","updated_at":"2026-06-17T06:32:23.811Z","avatar_url":"https://github.com/k66inthesky.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Leetcode-Rust\nImplement Leetcode Blind75 in Rust\n+ 教學影片：待補 預計放https://www.youtube.com/@k66inthesky\n+ 目前進度：8/75\n\n| Total | Easy | Medium | Hard |\n| :----: | :----: | :----: | :----: |\n| 8 | 3 | 5 | 0 |\n\n### 题目\n\n| 順序 | 題目 | 程式碼 | 分類1 | 分類2| 分類3 |難度 |\n| ---- | ---- | ---- | ---- | ---- | ---- | ---- | \n|1 | [1. Two Sum](https://leetcode.com/problems/two-sum/) | [src](https://github.com/k66inthesky/Leetcode-Rust/blob/main/src/1.rs) | Array | Hash Table || Easy |\n|2 | [121. Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/) | [src](https://github.com/k66inthesky/Leetcode-Rust/blob/main/src/121.rs) | Array | DP[[註1]](#註1) | | Easy |\n|3 | [217. Contains Duplicate](https://leetcode.com/problems/contains-duplicate) | [src](https://github.com/k66inthesky/Leetcode-Rust/blob/main/src/217.rs) | Array | Hash Table | Sorting | Easy |\n|4 | [238. Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self) | [src](https://github.com/k66inthesky/Leetcode-Rust/blob/main/src/238.rs) | Array | Prefix Sum | | Medium |\n|5 | [53. Maximum Subarray](https://leetcode.com/problems/maximum-subarray) | [src](https://github.com/k66inthesky/Leetcode-Rust/src/blob/main/53.rs) | Array | D\u0026C[[註2]](#註2) | DP | Medium |\n|6 | [152. Maximum Product Subarray](https://leetcode.com/problems/maximum-product-subarray/) | [src](https://github.com/k66inthesky/Leetcode-Rust/src/blob/main/152.rs) | Array | DP |  | Medium |\n|7 | [153. Find Minimum in Rotated Sorted Array](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array) | [src](https://github.com/k66inthesky/Leetcode-Rust/src/blob/main/153.rs) | Array | BS[[註3]](#註3) |  | Medium |\n|8 | [33. Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array) | [src](https://github.com/k66inthesky/Leetcode-Rust/src/blob/main/33.rs) | Array | BS |  | Medium |\n|9 | [88. Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array) | [src](https://github.com/k66inthesky/Leetcode-Rust/src/blob/main/88.rs) | Array | Two Pointers | Sorting | Easy |\n|10 | []() | [src](https://github.com/k66inthesky/Leetcode-Rust/src/blob/main/.rs) |  |  |  |  |\n\n\u003cspan id=\"註1\"\u003e\u003c/span\u003e \n\u003e 註1 DP=Dynamic Programming\u003cspan id=\"註2\"\u003e\u003c/span\u003e \n\u003e 註2 D\u0026C=Devide\u0026Conquer\u003cspan id=\"註3\"\u003e\u003c/span\u003e \n\u003e 註3 BS=Binary Search\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk66inthesky%2Fleetcode-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fk66inthesky%2Fleetcode-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk66inthesky%2Fleetcode-rust/lists"}