Class: BackwardsAlgorithm

Inherits:
Object show all
Defined in:
lib/quiz1/t/solutions/Jamis Buck/lib/cipher.rb

Instance Method Summary collapse

Instance Method Details

#new_deckObject



205
206
207
208
209
# File 'lib/quiz1/t/solutions/Jamis Buck/lib/cipher.rb', line 205

def new_deck
  deck = Deck.new
  deck.cards = deck.to_a.reverse
  deck
end