cozylife/hackfastalgos

View on GitHub
lib/datastructure/gametree.php

Summary

Maintainability
A
0 mins
Test Coverage
<?HH
/**
 * Hack Fast Algos
 *
 * Implementation of a game tree
 * Learn more @link https://en.wikipedia.org/wiki/Game_tree
 */

namespace HackFastAlgos\DataStructure;

class GameTree
{

}