Meta Interview Question — LeetCode 1265

Y Tech
1 min readFeb 4, 2022

In this post, we are going to discuss leetcode 1265 — Print Immutable Linked List in Reverse, which is asked in Meta interviews.

Problem Analysis

You are given an immutable linked list, print out all values of each node in reverse with the help of the following interface:

ImmutableListNode: An interface of immutable linked list, you are given the head of the list.

You need to use the following functions to access the linked list (you can’t access the ImmutableListNode

--

--