Skip to content

Commit 48345dd

Browse files
committed
0061. Rotate List
1 parent 7728e15 commit 48345dd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

markdown/0061. Rotate List.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Explanation:
2424
rotate 1 steps to the right: 2->0->1->NULL
2525
rotate 2 steps to the right: 1->2->0->NULL
2626
rotate 3 steps to the right: 0->1->2->NULL
27-
rotate 4 steps to the right: 2->0->1->NULL```
27+
rotate 4 steps to the right: 2->0->1->NULL
28+
```
2829

2930

3031
#### Solution

src/main/java/leetcode/_61_/solution.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Explanation:
2424
rotate 1 steps to the right: 2->0->1->NULL
2525
rotate 2 steps to the right: 1->2->0->NULL
2626
rotate 3 steps to the right: 0->1->2->NULL
27-
rotate 4 steps to the right: 2->0->1->NULL```
27+
rotate 4 steps to the right: 2->0->1->NULL
28+
```
2829

2930

3031
#### Solution

0 commit comments

Comments
 (0)