beta-yu

Results 3 comments of beta-yu

Go ```go func isPalindrome(head *ListNode) bool { slow, fast := head, head for fast != nil && fast.Next != nil { slow = slow.Next fast = fast.Next.Next } if fast...

```swift /// Computed property to iterate through the linked list and return the last node in the list (if any) public var last: Node? { guard var node = head...

> iOS 14.1 ![image](https://user-images.githubusercontent.com/30454773/202098250-8d0502ae-b11e-41c7-9792-7cc1d685bc07.png)