UNPKG

tictactoe-complex-ai

Version:
13 lines (9 loc) 282 B
const HardAI = require('./HardAI.js'); function ExpertAI(config) { HardAI.call(this, config); } ExpertAI.prototype = Object.create(HardAI.prototype); ExpertAI.prototype.play = function(board) { return this.defaultPlay(board, 9); }; module.exports = ExpertAI;