forked from adrianeyre/codewars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShell.rb
More file actions
33 lines (25 loc) · 1.15 KB
/
Shell.rb
File metadata and controls
33 lines (25 loc) · 1.15 KB
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
=begin
The Shell Game" involves three shells/cups/etc upturned on a playing surface,
with a ball placed underneath one of them. The shells are then rapidly swapped
round, and the game involves trying to track the swaps and, once they are
complete, identifying the shell containing the ball.
This is usually a con, but you can assume this particular game is fair...
Your task is as follows. Given the shell that the ball starts under, and list of
swaps, return the location of the ball at the end. All shells are indexed by the
position they are in at the time.
For example, given the starting position 0 and the swap sequence
[(0, 1), (1, 2), (1, 0)]:
The first swap moves the ball from 0 to 1
The second swap moves the ball from 1 to 2
The final swap doesn't affect the position of the ball.
So
swaps = [[0,1], [1,2], [1, 0]]
find_the_ball(0, swaps) == 2
There aren't necessarily only three cups in this game, but there will be at
least two. You can assume all swaps are valid, and involve two distinct indices.
=end
# My Solution
def find_the_ball start, swaps
swaps.each {|x| x[0] == start ? start = x[1] : x[1] == start ? start = x[0] : start = start}
start
end