From 3290b9c3af255731bf92864c7fc240fe8fdf603f Mon Sep 17 00:00:00 2001 From: codacytesteuser <38557762+codacytesteuser@users.noreply.github.com> Date: Fri, 21 Nov 2025 12:02:23 +0000 Subject: [PATCH 1/2] PR 01 Commit 01 --- tictactoe.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tictactoe.js b/tictactoe.js index 854cebf..f58ac36 100644 --- a/tictactoe.js +++ b/tictactoe.js @@ -16,6 +16,15 @@ class TicTacToe { ); } + unusedMethod(position) { + if(position === null) { + return false; + } + if(position === null) { + return false; + } + } + makeMove(position) { if (this.winner || this.board[position] !== null) { return false; From a6ba7177ff1094b980e934d323339e92e5033f7f Mon Sep 17 00:00:00 2001 From: codacytesteuser <38557762+codacytesteuser@users.noreply.github.com> Date: Fri, 21 Nov 2025 12:09:29 +0000 Subject: [PATCH 2/2] PR 01 Commit 02 --- tictactoe.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tictactoe.js b/tictactoe.js index f58ac36..8b3a36a 100644 --- a/tictactoe.js +++ b/tictactoe.js @@ -25,6 +25,15 @@ class TicTacToe { } } + unusedMethod2(position) { + if(position === null) { + return false; + } + if(position === null) { + return false; + } + } + makeMove(position) { if (this.winner || this.board[position] !== null) { return false;