Code Room
CodingHardcod-g117
Subject Design data structuresLevel Senior–Staff~40 minCommon in Algorithms & data structures interviewsIndustries Software development, Technology

Question

Implement an LFU (Least-Frequently-Used) cache with the given positive capacity. get(key) returns the value or -1 if absent. put(key, value) inserts or updates; when at capacity, evict the least-frequently-used key, breaking ties by least-recently-used. Both get and put count as a use that increments the key's frequency. Given a list of operations (['put', k, v] or ['get', k]), return the list of results produced by get operations, in order (put produces no output). There are 1 to 10^4 ops; capacity is between 1 and 10^4.

Implement
run_lfu_cache(capacity: int, ops: list[list]) → list[int]
Examples
in[2,[["put",1,1],["put",2,2],["get",1],["put",3,3],["get",2],["get",3],["put",4,4],["get",1],["get",3],["get",4]]]out[1,-1,3,-1,3,4]
What a strong answer looks like

State your approach and its time/space complexity out loud before you optimize. Handle the edge cases (empty input, duplicates, overflow), and say why you chose this over the brute force. Green tests are the floor, not the grade.

Vibe coding: describe the solution in plain language (or narrate it) and the coach grades your approach. Generating runnable code from your description is coming next.

Run or narrate your approach, then ask the coach.