Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 337 Bytes

File metadata and controls

6 lines (5 loc) · 337 Bytes

long-map

Finish development of class LongMapImpl, which implements a map with keys of type long. It has to be a hash table (like HashMap). Requirements:

  • it should not use any known Map implementations;
  • it should use as less memory as possible and have adequate performance;
  • the main aim is to see your codestyle and teststyle