🍃 Breeze Bless

IDEA刷题插件配置分享

Good Luck

1. 安装

插件地址 LeetCode with labuladong - IntelliJ IDEs Plugin | Marketplace

2. 基本配置

安装后侧边栏会多一个按钮,登录之类的功能自己参考说明,正常人都能看懂。

3. 推荐配置

一览

完整配置

注意事项

package com.imzhizi.leetcode.editor.cn;

import org.junit.jupiter.api.Test;

class ${question.title} {

${question.code}

    @Test
    public void test() {

    }

}

依赖

1    <dependency>
2        <groupId>org.junit.jupiter</groupId>
3        <artifactId>junit-jupiter</artifactId>
4        <version>5.9.1</version>
5        <scope>test</scope>
6    </dependency>

#Productivity