最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Python代碼編寫:CSC108H Tic-Tac-Toe

2022-10-25 15:16 作者:拓端tecdat  | 我要投稿

全文鏈接:tecdat.cn/?p=29592

Requirement

Tic-tac-toe?is a two-player game that children often play to pass the time. The game is usually played using a 3-by-3 game board. Each player chooses a symbol to play with (usually an X or an O) and the goal is to be the first player to place 3 of their symbols in a straight line on the game board (either across a row on the board, down a column or along one of the two main diagonals).

In this Assignment, you are to complete some functions that make up part of a larger program for playing tic-tac-toe. In the program, game boards are not restricted to being 3-by-3, but are instead N-by-N, where N is one of the integers from 1 through 9, inclusive. Our game boards will always be square. When you have completed your functions for this Assignment, you will be able to play games of tic-tac-toe on your computer!

Analysis

Tic-tac-toe又稱井字棋,通常是在3x3的棋盤上,雙方輪流落子,先將3枚棋子連成一線的一方獲勝。本題將游戲進行了拓展,變?yōu)镹xN的棋盤,加大了難度。我們需要根據(jù)提供的框架實現(xiàn)游戲的邏輯部分,尤其是AI部分。
解題的關(guān)鍵需要理解游戲的規(guī)則,讀懂整個框架,找到切入點,根據(jù)給定的測試集不斷調(diào)試即可。

Tips

從測試集入手

>>> game_won('XXX-O-O--', 'X')True>>> game_won('XOXOXOOXO', 'X')False 復制代碼

從__main__開始一路調(diào)試,到

def play_tictatoe(): ?... ?hava_a_winner = game_won(game_board, player_symbol) 復制代碼

進入函數(shù)后,增加處理邏輯,核心代碼如下

def game_won(game_board, symbol): ?... ?for col in range(1, board_size + 1): ? ?extract = tictactoe_functions.extract_line(game_board, 'dowm', col) ? ? ?if extract == winning_string: ? ? ? ?return True ?for row in range(1, board_size + 1): ? ?extract = tictactoe_functions.extract_line(game_board, 'across', row) ? ? ?if extract == winning_string: ? ? ? ?return True ?... ?return False 復制代碼


Python代碼編寫:CSC108H Tic-Tac-Toe的評論 (共 條)

分享到微博請遵守國家法律
临夏市| 宣武区| 隆昌县| 天镇县| 新乡市| 高台县| 叙永县| 新化县| 巴东县| 吴忠市| 奈曼旗| 将乐县| 高邮市| 康平县| 临桂县| 云安县| 章丘市| 泰兴市| 丰都县| 嘉禾县| 尉氏县| 伊春市| 南京市| 佛冈县| 齐齐哈尔市| 铁岭县| 大同市| 中山市| 富阳市| 中阳县| 株洲县| 禹城市| 隆尧县| 江西省| 库尔勒市| 长汀县| 阆中市| 石河子市| 凯里市| 甘孜县| 嘉义市|