Example #1
0
 private bool EnsureMove(Rod source, Rod destination)
 {
     return(!destination.Any() || source.Peek() < destination.Peek());
 }