Pergunta de entrevista da empresa Cellebrite

- Implement a data structure with SET, GET - It is similar (or identical) to https://leetcode.com/problems/lru-cache/description/ - The data structure should initialized with maxSize - GET (index) - return the value by index - SET (index, value) - set a value to a given index - Index can be any number, not related to the size of the data structure - If the data structure is full (==max_size), remove the last used index item (used means GET/SET) and set the new value