Add traversal algorithms file

This commit is contained in:
Max Bucknell 2025-03-14 16:04:14 -07:00
parent 30c3926b25
commit 27335fe139
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,5 @@
defmodule MbBinaryTree.Traverse do
@moduledoc """
Utility functions for traversing binary trees.
"""
end

View file

@ -0,0 +1,4 @@
defmodule MbBinaryTree.TraverseTest do
use ExUnit.Case
doctest MbBinaryTree.Traverse
end