Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Linked List Reverse Or Bitwise
00:00
5 left

Linked List Reverse Or Bitwise

EasyPython

Problem

A Ford Motor vehicle control module stores a sequence of diagnostic events in a singly linked list. Reverse the list in place and return the new head, so the most recent event appears first.

The platform provides a ListNode class with an integer val field and a next field containing either another ListNode or None. Implement reverse_linked_list(head). The input is the head node, and the output is the head node of the reversed list. Do not create new list nodes.

For test cases, linked lists are represented as arrays of values. The evaluator converts each array into a linked list before calling the function and converts the returned list back into an array.

Constraints

  • 0 <= n <= 10^5, where n is the number of nodes
  • -10^9 <= node.val <= 10^9
  • The list contains no cycles
  • The operation must not create new list nodes

Function Signature

def reverse_linked_list(head):
Interviewer

Your question is Linked List Reverse Or Bitwise. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.