diff --git a/大厂刷题班/class32/SequenceM.java b/大厂刷题班/class32/ExaminationPaperWays.java similarity index 99% rename from 大厂刷题班/class32/SequenceM.java rename to 大厂刷题班/class32/ExaminationPaperWays.java index daa764f..3124fdb 100644 --- a/大厂刷题班/class32/SequenceM.java +++ b/大厂刷题班/class32/ExaminationPaperWays.java @@ -5,7 +5,7 @@ import java.util.Arrays; // 给定一个数组arr,arr[i] = j,表示第i号试题的难度为j。给定一个非负数M // 想出一张卷子,对于任何相邻的两道题目,前一题的难度不能超过后一题的难度+M // 返回所有可能的卷子种数 -public class SequenceM { +public class ExaminationPaperWays { // 纯暴力方法,生成所有排列,一个一个验证 public static int ways1(int[] arr, int m) { diff --git a/大厂刷题班/class32/说明 b/大厂刷题班/class32/说明 index 4f72a2d..e6112fd 100644 --- a/大厂刷题班/class32/说明 +++ b/大厂刷题班/class32/说明 @@ -22,4 +22,4 @@ leetcode全题目列表 : https://leetcode.com/problemset/all/ 0200 : 体系学习班, 第15节第2题、第3题 0202 : 大厂刷题班, 第32节, 本节 0204 : 大厂刷题班, 第32节, 本节 -补充题 SequenceM : 拼多多, 卷子合法数量问题 \ No newline at end of file +补充题 ExaminationPaperWays : 拼多多, 卷子合法数量问题 \ No newline at end of file