Skip to content

Instantly share code, notes, and snippets.

View micahcantor's full-sized avatar

Micah Cantor micahcantor

View GitHub Profile
@micahcantor
micahcantor / mutable-hash.rkt
Created January 2, 2021 05:17
An implementation of mutable hash tables in Racket
#lang racket/base
(require math/number-theory)
#| An implentation of mutable hash maps with string keys in Racket |#
#| "Private" Functions |#
(struct hash (table [num #:auto])
#:mutable