-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter6-think-of-a-number.exs
40 lines (34 loc) · 1.07 KB
/
chapter6-think-of-a-number.exs
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
# I’m thinking of a number between 1 and 1000....
# The most efficient way to find the number is to guess
# halfway between the low and high numbers of the range.
# If our guess is too big, then the answer lies between
# the bottom of the range and one less than our guess.
# If our guess is too small, then the answer lies between
# one more than our guess and the end of the range.
# Your API will be guess(actual, range), where range is
# an Elixir range. Your output should look similar to this:
# iex> Chop.guess(273, 1..1000) Is it 500
# Is it 250
# Is it 375
# Is it 312
# Is it 281
# Is it 265
# Is it 273
# 273
defmodule Chop do
def guess(needle, first.._last) when needle == first do
"Your number is #{first}"
end
def guess(needle, _first..last) when needle == last do
"Your number is #{last}"
end
def guess(needle, first..last) do
mid = div(first + last, 2)
IO.puts("Is it #{mid}?")
if needle > mid do
guess(needle, mid..last)
else
guess(needle, first..mid)
end
end
end