Skip to content

Commit 8e40347

Browse files
committed
modify code
1 parent f5ce0a2 commit 8e40347

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/class086/Code04_SmallestSufficientTeam.java renamed to src/class086/Code02_SmallestSufficientTeam.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// 请你返回规模最小的必要团队,团队成员用人员编号表示
1313
// 你可以按 任意顺序 返回答案,题目数据保证答案存在
1414
// 测试链接 : https://leetcode.cn/problems/smallest-sufficient-team/
15-
public class Code04_SmallestSufficientTeam {
15+
public class Code02_SmallestSufficientTeam {
1616

1717
// 讲解080、081 - 状压dp
1818
public static int[] smallestSufficientTeam(String[] skills, List<List<String>> people) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import java.util.Arrays;
2222

2323
// 讲解072 - 最长递增子序列及其扩展
24-
public class Code02_LIS {
24+
public class Code03_LIS {
2525

2626
public static int MAXN = 100001;
2727

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// 返回最久的停留时间和下标字典序最小的选择工具的方案
99
// 字典序设定 :
1010
// 下标方案整体构成的字符串保证字典序最小
11+
// 比如下标方案"1 120"比下标方案"1 2"字典序小
1112
// 测试链接 : https://www.luogu.com.cn/problem/P1759
1213
// 请同学们务必参考如下代码中关于输入、输出的处理
1314
// 这是输入输出处理效率很高的写法
@@ -21,7 +22,7 @@
2122
import java.io.StreamTokenizer;
2223

2324
// 讲解069 - 多维费用背包 + 空间压缩
24-
public class Code03_Diving {
25+
public class Code04_Diving {
2526

2627
public static int MAXN = 101;
2728

0 commit comments

Comments
 (0)