Online Assessment2026-08-12
Delete nodes from a linked list that fall within a specified range.
AI-Expanded — inferred from the question title, not from the original candidate report
Given the head of a singly linked list and two integers representing a closed range [min, max], remove all nodes from the list whose values fall within this inclusive range. Return the head of the modified linked list, ensuring that the remaining nodes maintain their original relative order.
Context & Summary
First round was an online assessment on HackerRank consisting of two coding problems.
💻 Coding practice works best on desktop.
Code editors are too cramped on mobile screens.
Loading editor...
AI can automatically infer and generate example test cases for this question based on standard algorithmic constraints.
InterviewDigest