This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ba.codeeng | |
import java.time.LocalDate | |
import cats.data.Validated | |
import cats.data.Validated._ | |
import cats.data.NonEmptyList | |
import cats.implicits._ | |
import java.time.format.DateTimeFormatter | |
import scala.util.Try |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; | |
public class ticToe { | |
int set=1; | |
String check1,check2,check3,check4,check5,check6,check7,check8,check9; | |
JFrame frame=new JFrame("Tic-Toe"); |