mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-04-28 19:13:48 +00:00
17 lines
254 B
Ruby
17 lines
254 B
Ruby
movie_ratings = {
|
|
memento: 3,
|
|
primer: 3.5,
|
|
the_matrix: 3,
|
|
truman_show: 4,
|
|
red_dawn: 1.5,
|
|
skyfall: 4,
|
|
alex_cross: 2,
|
|
uhf: 1,
|
|
lion_king: 3.5
|
|
}
|
|
# Add your code below!
|
|
|
|
good_movies = movie_ratings.select { |k, v| v > 3 }
|
|
print good_movies
|
|
|