Skip to content

Commit 6469a9c

Browse files
Merge pull request #2574 from pulkitbajaj13/new-branch
added new file Task1.2
2 parents dfd91c8 + 8a14684 commit 6469a9c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/lint_python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lint_python
1+
name: python
22
on: [pull_request, push]
33
jobs:
44
lint_python:

AI Game/Tic-Tac-Toe-AI/tictactoe.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def minimax(board, depth, is_maximizing):
1919
return -1
2020
if check_winner(board, 'O'):
2121
return 1
22-
if is_board_full(board): #if game is full, terminate
22+
if is_board_full(board):
2323
return 0
2424

2525
if is_maximizing: #recursive approach that fills board with Os

Task1.2.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Task 1.2

0 commit comments

Comments
 (0)