示例#1
0
文件: Day11.cs 项目: Skumby/AOC2020
 private bool IsPerson(IntVector2 position)
 {
     return(seats.ContainsKey(position) && seats[position] == SeatState.Person);
 }