/leetcode-playground

Leetcode problems and solutions in C# and Golang

Primary LanguageGoMIT LicenseMIT

LeetCode Playground

Build-Test codecov license

leetcode-playground

Tools

VS Code Configurations for LeetCode

Notes: Currently, vscode-leetcode doesn't provide workspace based settings and it just works with user settings. Please copy .vscode/setting.json content to your vscode user settings.

{
    "leetcode.workspaceFolder": "d:\\Github\\leetcode-playground\\problems",
    "leetcode.filePath": {
        
        "default": {
            "folder": "Difficulty/${difficulty}/${id}.${kebab-case-name}/${language}",
            "filename": "${id}.${kebab-case-name}.${ext}"
        }
    },
    "leetcode.hint.configWebviewMarkdown": false,
    "leetcode.useEndpointTranslation": false,
    "leetcode.hint.setDefaultLanguage": false,
    "leetcode.hint.commentDescription": false,
    "leetcode.showDescription": "Both"
}

Problems & Solutions

# Problem C# Go README Difficulty TAGS
1 Two Sum Solution Solution 📗 Easy Array, Hash Table
557 Reverse Words in a String III Solution Solution 📗 Easy String, Two Pointers

References