hash(value)
function to output a hash.hash(value)%N
to get the indexChaining (체이닝) where two values in the same index will be chained together: [None, None, (fast, '빠른')->(slow, '느린'), ...]
Open Addressing (개방 주소법) assigns the value in an empty space. If the hash for a new value is [3] but it is already assigned, it looks to the next value [4]. If [4] is assigned and [5] is empty, it is assigned to [5].