Netskope interview question

Implement Data structure to insert(10), remove(10) and getRandom() values with O(1)

Interview Answer

Anonymous

Mar 25, 2021

Used Map with an array to get the element and random values

1