Exemplo n.º 1
0
 public bool isEqualInCandidates(ClockCell cell)
 {
     return(this.candidates.SequenceEqual(cell.candidates));
 }
Exemplo n.º 2
0
        public object Clone()
        {
            var clone = new ClockCell(this.index, this.value, this.candidates, this.isFixed);

            return(clone);
        }