{"id":51110310,"url":"https://github.com/abduldevhub/leetcode-submissions","last_synced_at":"2026-06-24T17:01:09.025Z","repository":{"id":360263711,"uuid":"1248800131","full_name":"AbdulDevHub/Leetcode-Submissions","owner":"AbdulDevHub","description":"My LeetCode \u0026 NeetCode.io Problem Submissions","archived":false,"fork":false,"pushed_at":"2026-06-20T17:14:12.000Z","size":106,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-20T19:06:42.532Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://leetcode.com/u/HelionImperion/","language":"Python","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/AbdulDevHub.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-25T04:10:02.000Z","updated_at":"2026-06-20T17:14:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/AbdulDevHub/Leetcode-Submissions","commit_stats":null,"previous_names":["abduldevhub/neetcode-submissions"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AbdulDevHub/Leetcode-Submissions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdulDevHub%2FLeetcode-Submissions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdulDevHub%2FLeetcode-Submissions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdulDevHub%2FLeetcode-Submissions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdulDevHub%2FLeetcode-Submissions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AbdulDevHub","download_url":"https://codeload.github.com/AbdulDevHub/Leetcode-Submissions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdulDevHub%2FLeetcode-Submissions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34741320,"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-24T02:00:07.484Z","response_time":106,"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":[],"created_at":"2026-06-24T17:01:07.698Z","updated_at":"2026-06-24T17:01:09.016Z","avatar_url":"https://github.com/AbdulDevHub.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LeetCode \u0026 NeetCode Solutions — @AbdulDevHub\n\n\u003e Synced automatically from [NeetCode.io](https://neetcode.io) and [LeetCode.com](https://leetcode.com) · Repository: `LeetCode-Submissions`\n\n---\n\n## What is this?\n\nThis repository contains my personal solutions to coding interview problems from two platforms:\n\n- **[NeetCode.io](https://neetcode.io)** — a coding interview preparation platform featuring curated problems, video solutions, and an in-browser code editor. Solutions are pushed here automatically whenever I submit on NeetCode.\n- **[LeetCode.com](https://leetcode.com)** — the industry-standard platform for coding interview practice. Solutions are synced here weekly via a GitHub Action.\n\n---\n\n## How GitHub Sync works\n\n### NeetCode\n1. **Connect your GitHub account** on [neetcode.io/profile/github](https://neetcode.io/profile/github).\n2. **Auto-commit** — every time you submit a solution on NeetCode, it is pushed here automatically (configurable by status).\n3. **Bulk Sync** — push all your past solutions at once from the GitHub settings page.\n4. **Manual sync** — from the submission history panel on any problem page, sync or remove individual submissions.\n\n### LeetCode\n1. A **GitHub Action** runs every Saturday at 8am UTC and pulls the latest accepted submission for each problem.\n2. Solutions are committed automatically to the `LeetCode-Problems/` folder — no manual steps needed.\n3. The workflow can also be triggered manually from the **Actions** tab at any time.\n\n---\n\n## Repository structure\n\n```\nneetcode-submissions/\n├── Data Structures \u0026 Algorithms/   ← NeetCode solutions by topic\n├── Python For Beginners/           ← NeetCode solutions by topic\n└── LeetCode-Problems/              ← LeetCode solutions synced via GitHub Action\n```\n\n### NeetCode\nSolutions are organized by topic folder, then problem ID:\n```\n\u003ctopic-folder\u003e/\n  \u003cproblem-id\u003e/\n    submission-0.\u003cext\u003e   ← first submission\n    submission-1.\u003cext\u003e   ← second submission\n    ...\n```\n\n**Example:**\n```\nData Structures \u0026 Algorithms/two-integer-sum/submission-0.py\nData Structures \u0026 Algorithms/binary-search/submission-0.ts\nPython For Beginners/python-hello-world/submission-0.py\n```\n\n### LeetCode\nSolutions are organized by problem ID and name:\n```\nLeetCode-Problems/\n  \u003cproblem-id\u003e-\u003cproblem-name\u003e/\n    \u003cproblem-name\u003e.\u003cext\u003e   ← latest accepted submission\n```\n\n**Example:**\n```\nLeetCode-Problems/0001-two-sum/two-sum.py\nLeetCode-Problems/0021-merge-two-sorted-lists/merge-two-sorted-lists.py\n```\n\n---\n\n## Supported languages\n\n| Language | Extension |\n|---|---|\n| Python | `.py` |\n| JavaScript | `.js` |\n| TypeScript | `.ts` |\n| Java | `.java` |\n| C++ | `.cpp` |\n| C# | `.cs` |\n| Go | `.go` |\n| Rust | `.rs` |\n| Kotlin | `.kt` |\n| Swift | `.swift` |\n| SQL | `.sql` |\n\n---\n\n## Settings\n\n### NeetCode\nManage your sync preferences at [neetcode.io/profile/github](https://neetcode.io/profile/github):\n- **Auto-commit toggle** — enable or disable automatic commits on submission\n- **Status filter** — sync all submissions or accepted only\n- **Rename repository** — rename this repo or start fresh with a new one\n- **Bulk Sync** — push all past solutions at once (rate-limited)\n\n### LeetCode\nManage the GitHub Action in `.github/workflows/sync_leetcode.yml`:\n- **Schedule** — change the `cron` value to adjust sync frequency\n- **Manual trigger** — run the workflow on demand from the Actions tab\n- **Session refresh** — update `LEETCODE_SESSION` and `LEETCODE_CSRF_TOKEN` secrets when cookies expire\n\n---\n\n*NeetCode sync generated by [NeetCode GitHub Integration](https://neetcode.io) · LeetCode sync powered by [leetcode-sync](https://github.com/joshcai/leetcode-sync)*\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabduldevhub%2Fleetcode-submissions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabduldevhub%2Fleetcode-submissions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabduldevhub%2Fleetcode-submissions/lists"}