{"id":17803442,"url":"https://github.com/mehdihadeli/leetcode-playground","last_synced_at":"2025-09-11T10:42:38.870Z","repository":{"id":46876790,"uuid":"515150634","full_name":"mehdihadeli/leetcode-playground","owner":"mehdihadeli","description":"Leetcode problems and solutions in C# and Golang","archived":false,"fork":false,"pushed_at":"2022-07-21T18:49:34.000Z","size":38,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-07T19:30:57.293Z","etag":null,"topics":["algorithms","leetcode","leetcode-solutions","problem-solving"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mehdihadeli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-18T11:12:15.000Z","updated_at":"2022-08-01T05:07:02.000Z","dependencies_parsed_at":"2022-08-12T13:01:30.582Z","dependency_job_id":null,"html_url":"https://github.com/mehdihadeli/leetcode-playground","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehdihadeli%2Fleetcode-playground","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehdihadeli%2Fleetcode-playground/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehdihadeli%2Fleetcode-playground/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehdihadeli%2Fleetcode-playground/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mehdihadeli","download_url":"https://codeload.github.com/mehdihadeli/leetcode-playground/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246758284,"owners_count":20828919,"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":["algorithms","leetcode","leetcode-solutions","problem-solving"],"created_at":"2024-10-27T12:46:47.879Z","updated_at":"2025-04-02T04:42:40.861Z","avatar_url":"https://github.com/mehdihadeli.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LeetCode Playground\r\n\r\n[![Build-Test](https://github.com/mehdihadeli/leetcode-playground/actions/workflows/build-test.yml/badge.svg?branch=main\u0026style=flat-square)](https://github.com/mehdihadeli/leetcode-playground/actions/workflows/build-test.yml)\r\n[![codecov](https://codecov.io/gh/mehdihadeli/leetcode-playground/branch/main/graph/badge.svg?style=flat-square)](https://codecov.io/gh/mehdihadeli/leetcode-playground)\r\n[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/mehdihadeli/leetcode-playground/blob/main/LICENCE)\r\n\r\n![leetcode-playground](https://socialify.git.ci/mehdihadeli/leetcode-playground/image?description=1\u0026forks=1\u0026issues=1\u0026language=1\u0026name=1\u0026owner=1\u0026pulls=1\u0026stargazers=1\u0026theme=Light)\r\n\r\n## Tools\r\n- [LeetCode-OpenSource/vscode-leetcode](https://github.com/LeetCode-OpenSource/vscode-leetcode) - Solve LeetCode problems in VS Code ([Login to VS Code LeetCode](https://github.com/LeetCode-OpenSource/vscode-leetcode/issues/478#issuecomment-1046287835))\r\n\r\n## VS Code Configurations for LeetCode\r\n\r\nNotes: Currently, [vscode-leetcode](https://github.com/LeetCode-OpenSource/vscode-leetcode) doesn't provide [workspace based settings](https://code.visualstudio.com/docs/getstarted/settings#_workspace-settings) and it just works with [user settings](https://code.visualstudio.com/docs/getstarted/settings#_settingsjson). Please copy `.vscode/setting.json` content to your vscode [user settings](https://code.visualstudio.com/docs/getstarted/settings#_settingsjson).\r\n\r\n``` json\r\n{\r\n    \"leetcode.workspaceFolder\": \"d:\\\\Github\\\\leetcode-playground\\\\problems\",\r\n    \"leetcode.filePath\": {\r\n        \r\n        \"default\": {\r\n            \"folder\": \"Difficulty/${difficulty}/${id}.${kebab-case-name}/${language}\",\r\n            \"filename\": \"${id}.${kebab-case-name}.${ext}\"\r\n        }\r\n    },\r\n    \"leetcode.hint.configWebviewMarkdown\": false,\r\n    \"leetcode.useEndpointTranslation\": false,\r\n    \"leetcode.hint.setDefaultLanguage\": false,\r\n    \"leetcode.hint.commentDescription\": false,\r\n    \"leetcode.showDescription\": \"Both\"\r\n}\r\n```\r\n\r\n## Problems \u0026 Solutions\r\n\r\n\r\n|  #  |Problem | C# | Go | README| Difficulty |TAGS |\r\n| :-: | :-:    | :-:         | :-:         | :-:   | :--:       | :--:|\r\n|  1  | [Two Sum](https://leetcode.com/problems/two-sum) | [Solution](problems/Difficulty/Easy/1.two-sum/csharp/1.two-sum.cs)              | [Solution](problems/Difficulty/Easy/1.two-sum/golang/1.two-sum.go)|[📗](problems/Difficulty/Easy/readme.md)  |  Easy | Array, Hash Table | \r\n| 557  | [Reverse Words in a String III](https://leetcode.com/problems/reverse-words-in-a-string-iii/) | [Solution](problems/Difficulty/Easy/557.reverse-words-in-a-string-iii/csharp/557.reverse-words-in-a-string-iii.cs) | [Solution](problems/Difficulty/Easy/557.reverse-words-in-a-string-iii/golang/557.reverse-words-in-a-string-iii.go) | [📗](problems/Difficulty/Easy/557.reverse-words-in-a-string-iii/readme.md)   |    Easy    |  String, Two Pointers  |\r\n\r\n\r\n## References\r\n- [https://github.com/halfrost/LeetCode-Go](https://github.com/halfrost/LeetCode-Go)\r\n- [NikiforovAll/leetcode-playground-template](https://github.com/NikiforovAll/leetcode-playground-template)\r\n- [https://github.com/haoel/leetcode](https://github.com/haoel/leetcode)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmehdihadeli%2Fleetcode-playground","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmehdihadeli%2Fleetcode-playground","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmehdihadeli%2Fleetcode-playground/lists"}