Middle of a Linked List
Find the middle node of a linked list.
Input: 0 1 2 3 4
Output: 2
If the number of nodes is even, then return the second middle node.
Input: 0 1 2 3 4 5
Output: 3
Title
Script
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum
has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Contrary to popular belief, Lorem
Ipsum
is not simply random text.
1 >>> a = [1, 2, 3] 2 >>> a[-1] 3 3