Start with the python Mancala player. Fill out the minimax function to do a proper minimax with depth limits. Your game should be able to search to depth 4 very easily. You should be able to change the depth of the search easily in your implementation as it is stubbed out in the minimax function in the file. My implementation of minimax adds less than 30 lines total of python code to this file. You've been given endOfGame, score, and takeMove in the python Mancala player to help you along.