Find the fractional (or n/k - th) node in linked list
Given a singly linked list and a number k, write a function to find the (n/k)-th element, where n is the number of elements in the list. We need to consider ceil value in case of decimals.Examples: Input: 1->2->3->4->5->6 , k = 2Output: 3Explanation: 6/2th element is the 3rd(1-based i