Skip to content

Instantly share code, notes, and snippets.

View tuplebunny's full-sized avatar

Daniel tuplebunny

  • Pacific Northwest
View GitHub Profile
@tuplebunny
tuplebunny / binarytree.rb
Created May 26, 2019 07:48 — forked from yuya-takeyama/binarytree.rb
Binary Tree implemented in Ruby.
module BinaryTree
class Node
attr_reader :word, :count, :left, :right
include Enumerable
def initialize(word)
@word, @count = word, 1
end