{"id":19351052,"url":"https://github.com/thutasann/ts-leet","last_synced_at":"2026-06-18T11:31:25.073Z","repository":{"id":187396400,"uuid":"676788324","full_name":"thutasann/ts-leet","owner":"thutasann","description":"algorithms, leet code solutions and typescript fundamentals","archived":false,"fork":false,"pushed_at":"2025-09-15T03:54:46.000Z","size":104,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-15T05:42:26.987Z","etag":null,"topics":["algorithms","leetcode","typescript"],"latest_commit_sha":null,"homepage":"https://ts-leet.vercel.app","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/thutasann.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":"2023-08-10T02:46:28.000Z","updated_at":"2025-09-15T03:54:49.000Z","dependencies_parsed_at":"2024-11-10T04:35:07.448Z","dependency_job_id":"ae667a86-1a0b-4d23-b0fc-db6f42de2f97","html_url":"https://github.com/thutasann/ts-leet","commit_stats":null,"previous_names":["thutasann/ts-leet"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thutasann/ts-leet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thutasann%2Fts-leet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thutasann%2Fts-leet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thutasann%2Fts-leet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thutasann%2Fts-leet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thutasann","download_url":"https://codeload.github.com/thutasann/ts-leet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thutasann%2Fts-leet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34489019,"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-18T02:00:06.871Z","response_time":128,"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":["algorithms","leetcode","typescript"],"created_at":"2024-11-10T04:34:56.995Z","updated_at":"2026-06-18T11:31:24.963Z","avatar_url":"https://github.com/thutasann.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TS DSA, Interview Q\u0026A and Leetcodes 🚀\n\nThis repo contains Data Structures and Algorithms and Leet Code Solutions.\n\n\u003e Each DSA, interviews Q\u0026A and leetcode solutions are represented along with the explanation.\n\nOther snippets can also be found at [My portfolio](https://thutadev.vercel.app/snippets).\n\n## Table of Content\n\n- 🚀 Big O Notation\n\n  - [ConstantTime](https://github.com/thutasann/ts-leet/tree/main/src/BigO/ConstantTime/)\n  - [LinearTime](https://github.com/thutasann/ts-leet/tree/main/src/BigO/LinearTime/)\n  - [QuadraticTime](https://github.com/thutasann/ts-leet/tree/main/src/BigO/QuadraticTime/)\n\n- 🚀 LEETCODES\n\n  - [TwoSum](https://github.com/thutasann/ts-leet/tree/main/src/LeetCodes/TwoSum)\n  - [NumberOfIslands](https://github.com/thutasann/ts-leet/tree/main/src/LeetCodes/NumberOfIslands)\n  - [ReverseInteger](https://github.com/thutasann/ts-leet/tree/main/src/LeetCodes/ReverseInteger)\n  - [GenerateParentheses](https://github.com/thutasann/ts-leet/tree/main/src/LeetCodes/GenerateParentheses)\n\n- 🚀 Exercism Solutions\n\n  - [ClockSolution](https://github.com/thutasann/ts-leet/tree/main/src/LeetCodes/ClockSolution)\n\n- 🚀 TYPESCRIPTS\n\n  - [Generics](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/Generics)\n  - [Access Modifiers](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/AccessModifiers.ts)\n  - [Ordering Overload](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/OrderingOverload.ts)\n  - [Union Type](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/UnionTypes.ts)\n  - [Satisfies](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/Satisfies.ts)\n  - [ExtendsImplements](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/ExtendsImplements.ts)\n  - [LiteralTypes](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/LiteralTypes.ts)\n  - [Type Guards](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/TypeGuards.ts)\n  - [Enums](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/Enums.ts)\n  - [Keyof \u0026 TypeOf](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/KeyOfTypeOf.ts)\n  - [Depedency Injection](https://github.com/thutasann/ts-leet/tree/main/src/Typescript/DepedencyInjection.ts)\n\n- 🚀 INTERVIEWS\n\n  - [Array DSA](https://github.com/thutasann/ts-leet/tree/main/src/Interviews/Arrays)\n  - [Recursions DSA](https://github.com/thutasann/ts-leet/tree/main/src/Interviews/Recursions)\n\n## Available scripts\n\n### Install Code Runner VS Code Extension\n\n[Code Runner VS Code Extension](https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner)\n\n### Install the dependencies\n\n```bash\nyarn\n```\n\n### Start the Typescript Server and Lite-server\n\n```bash\nyarn dev\n```\n\n### Compile the Typescript\n\n```bash\nyarn build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthutasann%2Fts-leet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthutasann%2Fts-leet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthutasann%2Fts-leet/lists"}