Skip to content

Commit 94a53a7

Browse files
committed
modify code
1 parent 0f3c89b commit 94a53a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/class174/Code03_ColorfulWorld1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// 五彩斑斓的世界,java版
44
// 给定一个长度为n的数组arr,一共有m条操作,每条操作类型如下
55
// 操作 1 l r x : arr[l..r]范围上,所有大于x的数减去x
6-
// 操作 2 l r x : arr[l..l]范围上,查询x出现的次数
6+
// 操作 2 l r x : arr[l..r]范围上,查询x出现的次数
77
// 1 <= n <= 10^6
88
// 1 <= m <= 5 * 10^5
99
// 0 <= arr[i]、x <= 10^5

src/class174/Code03_ColorfulWorld2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// 五彩斑斓的世界,C++版
44
// 给定一个长度为n的数组arr,一共有m条操作,每条操作类型如下
55
// 操作 1 l r x : arr[l..r]范围上,所有大于x的数减去x
6-
// 操作 2 l r x : arr[l..l]范围上,查询x出现的次数
6+
// 操作 2 l r x : arr[l..r]范围上,查询x出现的次数
77
// 1 <= n <= 10^6
88
// 1 <= m <= 5 * 10^5
99
// 0 <= arr[i]、x <= 10^5

0 commit comments

Comments
 (0)