LeetCode刷题模板 & GPT Prompt
LeetCode刷题模板
我的leetcode刷题仓库: https://github.com/boommanpro/leetcode-practice
插件:LeetCode with labuladong
配置示例:
模板配置:
package leetcode.editor.cn;
import org.junit.Assert;
import org.junit.Test;
class SolutionTest${question.frontendQuestionId} {
${question.content}
public static
${question.code}
//Do some Test
public static class TestClass {
@Test
public void defaultSolutionTest() {
Solution solution = new Solution();
}
}
}
Template Constant
${question.title} 题目标题 示例:两数之和
${question.titleSlug} 题目标记 示例:two-sum
${question.frontendQuestionId} 题目编号
${question.content} 题目描述
${question.code} 题目代码
$!velocityTool.camelCaseName(str) 转换字符为大驼峰样式(开头字母大写)
$!velocityTool.smallCamelCaseName(str) 转换字符为小驼峰样式(开头字母小写)
$!velocityTool.snakeCaseName(str) 转换字符为蛇形样式
$!velocityTool.leftPadZeros(str,n) 在字符串的左边填充0,使字符串的长度至少为n
$!velocityTool.date() 获取当前时间
GPT Prompt
prompt:请按照示例添加单元测试
操作:选中代码,然后输入prompt,然后开心run起来。
以通义千问为例: