https://github.com/VKappaKV/avlTree/blob/main/projects/avlTree/contracts/AvlTree.algo.ts
Testing out how to implement an AVL Tree in Tealscript.
current error:
throw Error(Cannot resolve type ${type.getText()} (${typeString}));
implementation problem:
AVL tree balance uses <-1 and > +1 to understand balancing rotations for the tree, since negative numbers aren't supported there needs to be a workaround to go about Right case rotations

at first I thought about using one box, because if each node is a box then the txn might run out of box references?
ty man