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
π Morning 14 commits βββββββββββββββββββββ 1.6% | |
π Daytime 374 commits βββββββββββββββββββββ 42.6% | |
π Evening 451 commits βββββββββββββββββββββ 51.4% | |
π Night 39 commits βββββββββββββββββββββ 4.4% |
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 '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 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 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 { |