Skip to content

Commit 0531d55

Browse files
committed
modify
1 parent f04c077 commit 0531d55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: Algorithms/C/283-Move-Zeroes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Special thanks to @jianchao.li.fighter for adding this problem and creating all
1616

1717
題目要求不能配置新的空間,必須在原本陣列做修改勢必複雜度不超過 O(n)。
1818

19-
- 字串處理
19+
- 陣列走訪
2020
- Run Time: 16 ms
2121
- 時間複雜度: O(n)
2222
- 空間複雜度: O(1)

Diff for: Algorithms/Java/283-Move-Zeroes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Special thanks to @jianchao.li.fighter for adding this problem and creating all
1616

1717
題目要求不能配置新的空間,必須在原本陣列做修改勢必複雜度不超過 O(n)。
1818

19-
- 字串處理
19+
- 陣列走訪
2020
- Run Time: 3 ms
2121
- 時間複雜度: O(n)
2222
- 空間複雜度: O(1)

0 commit comments

Comments
 (0)