Category: data structure
Design a Snake game that is played on a device with screen size = width x height. Play the game online if you are not familiar with the game. …
Design and implement a TwoSum class. It should support the following operations: add and find. add – Add the number to an internal data structure. find – Find if …
The Trie is common used data structure to speed up the word searching. The Trie is a structure to index the words character by character. Trie Definition in C++ …
Given an array A of integers and integer K, return the maximum S such that there exists i < j with A + A = S and S < …
Design a hit counter which counts the number of hits received in the past 5 minutes. Each function accepts a timestamp parameter (in seconds granularity) and you may assume …