Ejemplo n.º 1
0
 private int GetTopValue()
 {
     if (Discs.Count == 0)
     {
         return(0);
     }
     return(Discs.Peek());
 }
Ejemplo n.º 2
0
 public bool Give(Tower acceptor)
 {
     if (acceptor.Push(Discs.Peek()))
     {
         Discs.Pop();
         return(true);
     }
     return(false);
 }