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

            return(clone);
        }