PDA

View Full Version : Brain Teaser #75


Greg Bernhardt
Jan15-04, 10:12 AM
Can you find the largest number possible containing any of 9 of 10 digits, considering 0 also a number, that is divisible by 11 without a reminder?

Guybrush Threepwood
Jan15-04, 10:19 AM
is it 9999999999?

Njorl
Jan15-04, 10:23 AM
Originally posted by Greg Bernhardt
Can you find the largest number possible containing any of 9 of 10 digits, considering 0 also a number, that is divisible by 11 without a reminder?

That doesn't make sense.

Njorl

Njorl
Jan15-04, 10:26 AM
nm

dduardo
Jan15-04, 11:28 AM
The wording is a bit strange, but I think I got it. I did a brute force attack on this problem. Starting at 999999999 and decrementing by 1 each time, I did a modulus 11 and checked if the result was 0. Here is what I got:

999999990

or if you can only use each digit once it is

987652413

Greg Bernhardt
Jan15-04, 02:22 PM
987652413 is the answer, dduardo gets the point! :)

Jimmy
Jan15-04, 02:59 PM
doh! I always see these when it's too late. [6)]