boolean containsCell(Cell c) {
   for (Garden g : this) {
     if (g.contains(c)) return true;
   }
   return false;
 }