Skip to content

Commit 1345fd2

Browse files
committed
refac(Linked List): remove unnecessary prints
1 parent 4f6c4bc commit 1345fd2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Linked List/LinkedList.playground/Contents.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -379,10 +379,7 @@ list.append(list2) // [Hello, World, Goodbye, World]
379379
list2.removeAll() // [ ]
380380
list2.isEmpty // true
381381

382-
383-
print(list)
384382
list.removeLast() // "World"
385-
list
386383
list.remove(at: 2) // "Goodbye"
387384

388385
list.insert("Swift", at: 1)

0 commit comments

Comments
 (0)