Write a function, reverse_list, that takes in the head of a linked list as an argument. The function should reverse the order of the nodes in the linked list in-place and return the new head of the reversed linked list.
a = Node("a")b = Node("b")c = Node("c")d = Node("d")e = Node("e")f = Node("f")a.next = bb.next = cc.next = dd.next = ee.next = f# a -> b -> c -> d -> e -> freverse_list(a) # f -> e -> d -> c -> b -> a
x = Node("x")y = Node("y")x.next = y# x -> yreverse_list(x) # y -> x
p = Node("p")# preverse_list(p) # p