Skip to content

Commit cb62a44

Browse files
committed
chore: format comment
1 parent a0b242e commit cb62a44

File tree

1 file changed

+1
-1
lines changed
  • solution/0100-0199/0189.Rotate Array

1 file changed

+1
-1
lines changed

solution/0100-0199/0189.Rotate Array/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ var rotate = function (nums, k) {
153153

154154
};
155155
function reverse(nums, start, end) {
156-
//双指针实现翻转
156+
// 双指针实现翻转
157157
while (start < end) {
158158
const temp = nums[start];
159159
nums[start] = nums[end];

0 commit comments

Comments
 (0)