cozylife/hackfastalgos

View on GitHub
lib/datastructure/twothreetree.php

Summary

Maintainability
A
0 mins
Test Coverage
<?HH
/**
 * Hack Fast Algos
 *
 * Implementation of a 2-3 Tree
 * Learn more @link https://en.wikipedia.org/wiki/2%E2%80%933_tree
 */

namespace HackFastAlgos\DataStructure;

class TwoThreeTree
{

}