This file contains 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
🌞 Morning 14 commits ▎░░░░░░░░░░░░░░░░░░░░ 1.6% | |
🌆 Daytime 374 commits ████████▉░░░░░░░░░░░░ 42.6% | |
🌃 Evening 451 commits ██████████▊░░░░░░░░░░ 51.4% | |
🌙 Night 39 commits ▉░░░░░░░░░░░░░░░░░░░░ 4.4% |
This file contains 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 'dart:io'; | |
var cells = List.generate(3, (_) => [0, 0, 0]); | |
var player = 1; | |
void main(List<String> arguments) { | |
printGameField(); | |
while (true) { | |
print("Player $player's turn"); |
This file contains 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 java.math.BigInteger; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Scanner; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
import java.util.stream.Collectors; | |
public class Main { |