
You can’t change any of the pointers in the linked list, just print the linked list in the reverse order.
The first line contains an Integer 't' which denotes the number of test cases or queries to be run. Then the test cases follow.
The first and the only line of each test case or query contains the elements of the singly linked list separated by a single space.
For each test case, print the singly linked list of integers in a reverse fashion, in a row, separated by a single space.
Output for every test case will be printed in a seperate line.
1 <= t <= 10^2
0 <= M <= 10^3
Time Limit: 1sec
Where 'M' is the size of the singly linked list.
While specifying the list elements for input, -1 indicates the end of the singly linked list and hence, would never be a list element.
Sorted Doubly Linked List to Balanced BST
Longest Substring with K-Repeating Characters
Expression Add Operators
Gray Code Transformation
Count of Subsequences with Given Sum