Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 442 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 442 Bytes

jv-hash-map

Let's create your own HashMap and implement methods:

  • put(K key, V value)
  • getValue()
  • getSize()

Be attentive with basic requirements for the implementation of the map (initial capacity, load factor, resize ...)

P.s: you can implement other methods of the Map interface.

Try to avoid these common mistakes while solving task