BrainStone / LeetCode

This little project is a template for running LeetCode problems locally in your CLion installation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LeetCode C++ Template

This little project is a template for running LeetCode problems locally in your CLion installation.

Usage

  • Install the LeetCode Editor plugin
  • Configure the plugin and log in to your account as you normally would
  • Configure the problems folder as the TempFilePath of the plugin
  • Copy the templates from the templates folder into the respective templates of the plugin
  • Start solving problems and enjoy each problem being locally debuggable

Caveats

Since C++20 doesn't have reflection

  • Be sure to reload CMake after each new project
  • Be sure to make the entry function look like this:
    class Solution {
    // ...
    public:
    	<return type> <function-name>(<argument-list>)
    // ...
    };
  • Be sure to reload CMake after changing the entry function's parameter types (like for example by changing string to const string&)

About

This little project is a template for running LeetCode problems locally in your CLion installation.

License:GNU General Public License v3.0


Languages

Language:C++ 83.1%Language:CMake 16.9%