CarGurus interview question

Coding challenge: LRU cache implementation in Go via CodePen

Interview Answer

Anonymous

28 Jan 2026

Make sure you're familiar with the stdlib's containers/list library and its methods. You'll use that implementation of linked lists plus a map of pointers to the list elements to manage the cache contents.