A lift was coming down stopping at each floor. A person in the lift was asked to guess the floor at every successive stop. The guesses made were in this order: 30, 23, 26, 29, 20, 28, 24, 21, 25, 27, and 22. If all the guesses except one were wrong, then which one was correct?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Lol, brute force:
Pick a number, then count down from that number and see if your count down intercepts with another number on the list. Let's choose 23 for an example, then 23 -> 26, 22 -> 20, 21->29 20->20 Which is bad. Also, if no intercepts are found going down, then count upward, the only number that has no intercepts either direction is 27.