mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-15 12:13:45 +00:00
Refactored to add a class and handle part 2
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Day_03
|
||||
{
|
||||
public class Claim
|
||||
{
|
||||
public int ClaimId { get; set; }
|
||||
public bool CellsUsedMoreThanOnce { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user