Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 287 Bytes

File metadata and controls

9 lines (5 loc) · 287 Bytes

Racket

Toy programs I wrote to learn racket.

Caclulator evaluates infix arithmetic expressions by parsing the input and applying order of operations.

Queue uses two lists to create a queue with ammortized constant remove operations, rather than the O(n) naive implementation.