Hi. I was wondering if anyone could help me with checking for a valid move in Othello. I was thinking about hard=coding everything but that takes too long.
this is what i have so far:
1. Check which direction is valid (adjacent piece is different from piece being placed)
2. Go in that direction(s) and if:
1. hit the end, or hit a empty space return false
2. hit another piece, keep going
3. hit my own piece, stop