Skip to content

Commit 89e94ab

Browse files
refactor 143
1 parent bcf3fb4 commit 89e94ab

File tree

1 file changed

+0
-1
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-1
lines changed

src/main/java/com/fishercoder/solutions/_143.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
Given {1,2,3,4}, reorder it to {1,4,2,3}.
1515
*/
1616
public class _143 {
17-
1817
public static class Solution1 {
1918
public void reorderList(ListNode head) {
2019
if (head == null || head.next == null) {

0 commit comments

Comments
 (0)