2022年11月14日

井字棋 网格迁移

摘要: ##1275. 找出井字棋的获胜者 int[][] pad = new int[3][3]; for(int i = 0; i < moves.length; i++) { int r = moves[i][0], c = moves[i][1]; if(i % 2 == 0) { pad[r][c 阅读全文

posted @ 2022-11-14 12:06 xtdnn 阅读(23) 评论(0) 推荐(0)

导航