We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf3fb4 commit 89e94abCopy full SHA for 89e94ab
src/main/java/com/fishercoder/solutions/_143.java
@@ -14,7 +14,6 @@
14
Given {1,2,3,4}, reorder it to {1,4,2,3}.
15
*/
16
public class _143 {
17
-
18
public static class Solution1 {
19
public void reorderList(ListNode head) {
20
if (head == null || head.next == null) {
0 commit comments