コード例 #1
0
ファイル: Solver.cs プロジェクト: fulee85/AdventOfCode2020
 private string GetActiveCubeCount(ISpace space)
 {
     for (int round = 0; round < 6; round++)
     {
         space.Step();
     }
     return(space.GetActivePartsCount().ToString());
 }