AdventOfCode2021/day4.cs

14 lines
264 B
C#
Raw Normal View History

2022-12-17 09:22:51 +01:00
class Field{
string[,] bingoField = new string[5,5];
public Field(string[,] bingoField){
this.bingoField = bingoField;
}
public void markNumber(string markNumber){
int row = 5;
int columnn = 5;
}
}