ruby-uebungen/Assignment_023/solution
Thomas Smits fe2c1c6eb6 Update of exercises 2023-05-25 17:47:19 +02:00
..
readme.md Update of exercises 2023-05-25 17:47:19 +02:00

readme.md

Lösung: Hashes





























































```ruby worte = %w{ Bier Schnaps Bier Vodka Rum Baileys Rum Bier Vodka Bier Hugo }

def de_dupe(input) hash = {} input.each { |e| hash[e] = true } hash.keys.sort end

puts de_dupe(worte)