leetcode-runner-cli

Executes leetcode testcases and submits your solution through CLI interface

Crates.io GitHub license GitHub issues

Leetcode Runner CLI Banner

Disclaimer : This is not an official Leetcode tool. I am not affiliated with Leetcode in any way. This tool is not endorsed by leetcode.


Installation

Using Cargo

  1. If you have Cargo installed on your system then you can install the tool using the following command.

    bash cargo install leetcode-runner-cli

Using pre-built binaries

  1. Go to the Releases section and download the appropriate binary for your system.

  2. Place the binary in appropriate location and add the location in your PATH environment variable.

Building from source

  1. Install rust from here to compile the source code.

  2. Clone the repository and move to the repository directory.

    bash git clone https://github.com/dvishal485/leetcode-runner-cli.git cd leetcode-runner-cli

  3. Compile and install the binary.

    bash cargo install --path .

Platform Specific Instructions

Depending on your platform you may need to install certain tools to be able to compile successfully.


Usage

  1. Setup environment variable LC_COOKIE with your leetcode session cookie. You may search on internet to know how to setup an environment variable on your system.

    You can get your session cookie by logging in to leetcode and inspecting the cookie from Request headers in your browser's developer tools.

    Make sure to put your cookie in double quotes.

    bash export LC_COOKIE="csrftoken=abcdefgh;LEETCODE_SESSION=ijklmnopqrstuvwxyz;"

  2. Execute the tool and verify your authentication.

    bash leetcode-runner-cli -a


bash leetcode-runner-cli [COMMAND] [OPTIONS <option>]

Commands

| Commands | Description | Arguments | | :----------------- | :--------------------------------------------- | :--------------------------- | | -h, --help | Prints help information | - | | -V, --version | Prints version information | - | | -a, auth | Authenticate with leetcode | - | | -d, daily | Fetch daily challenge question | - | | -q, question | Question title / url to fetch | [QUESTIONNAME] (required) | | -r, run | Execute file with default/specified testcases | -f [FILE] -t [TESTCASEFILE] | | -s, submit | Submit solution after passing testcases | -f [FILE] | | -fs, fast-submit | Submit solution without checking for testcase | -f [FILE] | | -p, pack | Pack your solution and question in a directory | -f [FILE] |

You can always look into a commands usage by passing --help.

File changes

If you fetch the question from the CLI (using -d or -q), then tool will automatically add the required changes in the boiler plate code.

But if you are using your own code, then you need to make the following changes :

The file you submit to leetcode shouldn't have driver code like main function or struct definition. But no need to manually remove it. The tool will automatically remove the driver code and submit the solution to leetcode. All you need to do is put the delimiters #LCSTART and #LCEND in your solution file in comments, and place leetcode problem link anywhere in the file.

For example :

```rust struct Solution;

// #LCSTART

impl Solution { pub fn two_sum(nums: Vec, target: i32) -> Vec { // real magic here } } // #LCEND https://leetcode.com/problems/two-sum/

fn main() { // can have anything which may assist you } ```

Example usage

The file name need not to be specified explicitly with --file or -f as it is an optional field. Check out Note below for more information

Note

  1. Code file should have the link of question in the comments for the following examples.
  2. If you don't specify file location then the tool will search for code in the current directory and use it by default.
  3. If there are multiple files, then the tool will use file named main or the first file it finds in case there is no main file.

So, in the above examples, you can simply do cd ./src and then run the following commands :


Languages supported

This is a generic module that can be used to run any language. It only needs a mapping to the language on leetcode and extension of the file.

Currently, the following languages are added by default : Rust, Python3, Cpp, Java, C, Javascript, Go, Kotlin, Swift, Typescript, Csharp, Ruby, Scala, PHP, Racket, Erlang, Elixir, Dart.

More languages can be added manually as per requirement by changing enum in the src/file_parser/language.rs file.


License & Copyright