| 1234567891011121314151617181920 |
- using System.Collections.Specialized;
- namespace Day12;
- public class WellRecord
- {
- public Arrangement Pattern { get; }
- public Checksum Checksum { get; }
- public WellRecord(string record, int[] checksum)
- {
- Pattern = new Arrangement(record);
- Checksum = new Checksum(checksum);
- }
- // public IEnumerable<List<int>> GeneratePermuations(int n, int choose)
- // {
- //
- // }
- }
|