Othello AI Arena for Intelligent System
(HW2)
Black:
0
White:
0
Black:
0.00s
/ 10.00s
White:
0.00s
/ 10.00s
Ready to start
Stage:
Black:
White:
Start Game
Reset Board
Clear All Data
Game log...
Save Log
Leaderboard
Begin ▶️
Stop 🛑
Refresh 🔁
Competition results will appear here.
Rank
Strategy
Win Rate
W
L
D
G
Upload Intelligent System (with Interaction) -
How to use API
Your system will have maximum 60 seconds to analyze the stage and generate a tailored strategy.
Upload Intelligent System
Upload Strategy (without Interaction) -
Sample Strategy
Upload Strategies
Saved Strategies
No saved strategies
Sample Strategy
Strategy Name:
function studentStrategy(board, player, validMoves, makeMove) { if (validMoves.length === 0) return null; const positionWeights = [[120,-20,20,5,5,20,-20,120],[-20,-40,-5,-5,-5,-5,-40,-20],[20,-5,15,3,3,15,-5,20],[5,-5,3,3,3,3,-5,5],[5,-5,3,3,3,3,-5,5],[20,-5,15,3,3,15,-5,20],[-20,-40,-5,-5,-5,-5,-40,-20],[120,-20,20,5,5,20,-20,120]]; let bestMove = null; let bestScore = -Infinity; for (const move of validMoves) { const score = positionWeights[move.row][move.col]; if (score > bestScore) { bestScore = score; bestMove = move; } } return bestMove; }
Save Strategy
Clear Editor