-
Notifications
You must be signed in to change notification settings - Fork 15
/
ruby-hash-exercise.rb
56 lines (46 loc) · 1.13 KB
/
ruby-hash-exercise.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#A variable starting with @ is a property, visible inside everywhere in this file
@favorite_books = {
'Frank Herbert' => ['Dune', 'Dune Messiah', 'Children of Dune', 'God Emperor of Dune'],
'Isaac Asimov' => ['Foundation', 'Foundation and Empire', 'Second Foundation'],
'Mervyn Peake' => ['Titus Groan', 'Gormenghast'],
'William Goldman' => ['The Princess Bride']
}
def get_books author
books = @favorite_books[author]
if books == nil
puts "No such author"
else
puts books.join ', '
end
end
#TODO finish me
def count_books author
end
#TODO Finish this
def find book
result = nil
@favorite_books.each do |author, books|
end
if result
puts result
else
puts "No such book"
end
end
def handle_command command, arg
if command == 'get'
get_books arg
elsif command == 'count'
count_books arg
#TODO Add find command
else
puts "Command not recognized"
end
end
loop do
print "Enter a command (q to finish): "
entered = gets.chomp #chomp removes the \n from the end
exit if entered == 'q'
parts = entered.split ' ', 2 #Split into two parts
handle_command parts[0], parts[1]
end