-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathTwoJoggers.rb
51 lines (36 loc) · 1.2 KB
/
TwoJoggers.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
=begin
Two Joggers
Description
Bob and Charles are meeting for their weekly jogging tour. They both start at
the same spot called "Start" and they each run a different lap, which may
(or may not) vary in length. Since they know each other for a long time already,
they both run at the exact same speed.
Illustration
Example where Charles (dashed line) runs a shorter lap than Bob:
Example laps
Task
Your job is to complete the function nbrOfLaps(x, y) that, given the length of
the laps for Bob and Charles, finds the number of laps that each jogger has to
complete before they meet each other again, at the same time, at the start.
The function takes two arguments:
The length of Bob's lap (larger than 0)
The length of Charles' lap (larger than 0)
The function should return an array containing exactly two numbers:
The first number is the number of laps that Bob has to run
The second number is the number of laps that Charles has to run
Examples
nbr_of_laps(5, 3) # returns [3,5]
nbr_of_laps(4, 6); # returns [3, 2]
=end
# My Solution
def nbr_of_laps(x, y)
multiple = x.lcm(y)
x = multiple/x
y = multiple/y
result = [x, y]
end
# Better Solution
def nbr_of_laps(x, y)
lcm = x.lcm(y)
[lcm/x, lcm/y]
end