Skip to content

Instantly share code, notes, and snippets.

View andrey-kabakchiev's full-sized avatar

Andrey Kabakchiev andrey-kabakchiev

View GitHub Profile
<?php
class Hash {
private $buckets = array();
function put($key, $value) {
$this->buckets[$this->generate_hash($key)] = $value;
}
function get($key) {