Перейти к содержимому

Delete Node in a Linked List - Leetcode 237 - Solution explained (Kotlin)

Vahid Hoss

0:00 / 0:00

Delete Node in a Linked List - Leetcode 237 - Solution explained (Kotlin)

96 просмотров · 3 года назад
Vahid Hoss
23 подписчика
96 просмотров · 3 года назад
Let's solve some sample interview questions together! 237. Delete Node in a Linked List There is a singly-linked list head and we want to delete a node node in it. You are given the node to be deleted node. You will not be given access to the first node of head. All the values of the linked list are unique, and it is guaranteed that the given node node is not the last node in the linked list. Delete the given node. Note that by deleting the node, we do not mean removing it from memory. We mean: The value of the given node should not exist in the linked list. The number of nodes in the linked list should decrease by one. All the values before node should be in the same order. All the values after node should be in the same order. Actual question: https://leetcode.com/problems/delete-... Timecodes 00:00 - Introduction and explanation 05:40 - Coding starts! #leetcode #kotlin #linkedlist