Alpha-Beta Code Plan
Goal: write your own alpha-beta pruning evaluator. Keep track of the number of nodes you evaluate.
Input Data: the bottom of a depth binary tree, so numbers in a list. These represent the values at the bottom of the tree.
Output data:
- a list of numbers of length holding the optimal-play values of each node.
- the number of evaluations performed