Create a custom practice set
Pick category, difficulty, number of questions, and time limit. Start instantly with your own quiz.
Generate QuizPick category, difficulty, number of questions, and time limit. Start instantly with your own quiz.
Generate QuizNo weekly quiz is published yet. Check the weekly page for the latest updates.
View Weekly PageAnswer: Hash Map + Doubly Linked List
LRU cache requires O(1) access and O(1) reorder on access. Hash map provides O(1) key lookup; doubly linked list maintains usage order with O(1) move-to-front. Combined, they achieve O(1) get/put operations. Classic system design question for SSC JE and banking IT exams.