auto commit

This commit is contained in:
CyC2018
2020-11-01 23:59:01 +08:00
parent 5924f90768
commit 8d08e48c54
3 changed files with 2 additions and 3 deletions

View File

@ -61,7 +61,6 @@ public RandomListNode Clone(RandomListNode pHead) {
RandomListNode next = cur.next;
cur.next = next.next;
cur = next;
next.next = cur.next;
}
return pCloneHead;
}