Create a TicTacToe game in Java using Swing so the user may
Create a TicTacToe game in Java using Swing so the user may interract with the game. In your class there should be 9 tiles total - 3x3. The class should display a message when either player 1 who is X\'s, or player 2 who is O\'s wins the game. To win the game you must connect 3 X\'s or O\'s together. There should also be a reset button just in case someone wants to restart the game.
Solution
Here is your program implementation :
