ocaml: phase 5.1 btree.ml baseline (13/13 pass)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 37s

Polymorphic binary search tree with insert + in-order traversal.
Exercises parametric ADT (type 'a tree = Leaf | Node of 'a * 'a tree
* 'a tree), recursive match, List.append, List.fold_left.
This commit is contained in:
2026-05-08 17:52:49 +00:00
parent d8f1882b50
commit 0858986877
3 changed files with 30 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
{
"btree.ml": 39,
"calc.ml": 13,
"closures.ml": 315,
"exception_handle.ml": 4,