Skip to content

Commit 2281323

Browse files
author
Yi Gu
committed
[LInkedList] change solution name
1 parent 51e48f4 commit 2281323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LinkedList/RemoveLinkedListElementsII.swift renamed to LinkedList/RemoveDuplicatesFromSortedListII.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* }
1919
*/
2020

21-
class RemoveLinkedListElementsII {
21+
class RemoveDuplicatesfromSortedListII {
2222
func deleteDuplicates(head: ListNode?) -> ListNode? {
2323
if head == nil || head!.next == nil {
2424
return head

0 commit comments

Comments
 (0)