2018 Day 02 incomplete solution - committed for posterity in case I ever go back to it

This commit is contained in:
Josh Creek
2019-12-01 11:22:11 +00:00
parent 14dd19c8d1
commit 5cfc70b65f
7 changed files with 1201 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
namespace Day_04
{
public class Guard
{
public int GuardId { get; set; }
public int TotalMinutesAsleep { get; set; }
public List<int> TimesSleptPerMinute { get; set; }
}
}