leetcode > https://leetcode-cn.com/ 本地idea刷題可以直接同步提交,測試等相關操作
需要安裝leetcode editor插件
1、idea setting中安裝leetcode插件

安裝成功idea右下角會有leetcode 圖標,可以直接點擊打開,也可以在設置中 插件中設置

2、設置相關leetcode信息

/**
* 題目Id:${question.frontendQuestionId}
* 題目:${question.title}
* 日期:$!velocityTool.date()
*/
${question.content}
package leetcode.editor.cn;
public class $!velocityTool.camelCaseName(${question.titleSlug}) {
public static void main(String[] args) {
Solution solution = new $!velocityTool.camelCaseName(${question.titleSlug})().new Solution();
}
${question.code}
}
3、單擊登錄如下紅色框,登錄成功會提示

4、新建java項目,並且在src下面創建第二步中設置的包:package leetcode.editor.cn

5、在右側的leetcode中選擇相關問題,直接點擊即可生成對應的類

至此配置已經完成,可以通過,本地debug等相關操作進行刷題

