Page 1 of 1

Random Problem Challenge

Posted: Fri Feb 27, 2009 11:02 pm
by kensie
What should the format of the answer be? Just a number? also many numbers would throw an Exception which one will work?

Posted: Sat Feb 28, 2009 1:59 am
by gfoot
Just a number. I'm not a Java expert so I can't comment on how many numbers would throw an exception... but if the site is not accepting your answers, have you tried compiling the code and trying them out to make sure they really do throw exceptions?

Posted: Tue Jul 21, 2009 8:31 pm
by sabretooth
I really don't understand this problem.

2147483647 is the max integer value in java - therefore this value and every possible value above this will cause an Exception. So why isnt it accepted? If you are looking for a 'specific' integer then the challenge should say so.

Any advice?

sabre

Posted: Tue Jul 21, 2009 10:16 pm
by gfoot
It's asking specifically for a value for 'randomNumber', which is declared as an int, so your answer has to be a valid int. I don't think 2147483647 will cause an exception, so no, that's not the answer, and higher numbers are not valid ints, so they don't count as answers either.

Posted: Wed Jul 22, 2009 12:28 am
by Theino
The answer is a valid int.

There is only one answer and thus only one valid int that would cause an exception.

Posted: Wed Jul 22, 2009 8:36 am
by sabretooth
Many thanks for the response :)

sabre

edit - solved.

Thanks again :)

Struggling

Posted: Wed Dec 07, 2011 7:16 pm
by General_Payne
Guessing there is some trick to this? Fairly sure i have run it for everything in the range -2147483647 to 2147483647 without an error

[Edit] -Scratch That. Was Being Retarded. Can't believe i spent over an hour on something so easy and obvious!!

Posted: Sat Jun 01, 2013 3:16 pm
by meis
I've rewritten it in PHp to read it better (I'm more familiar with it).
So I have:

Code: Select all

<?php
function bucketFromRandom($randomNumber) {
    $a = array();
	for ($i = 0; $i < 10; $i++)
		$a[$i] = $i * $randomNumber;
	$index = abs($randomNumber) % 10;
	return $a[$index];
}
echo bucketFromRandom(2147483648);
?>
Will it work in PHP too?
And what do I have to look for? I can't get it! But maybe i just don't understand what an exception is...

Posted: Wed Jun 05, 2013 2:30 pm
by Rat62
meis wrote:I've rewritten it in PHp to read it better (I'm more familiar with it).
So I have:

Code: Select all

<?php
...
?>
Will it work in PHP too?
...
Many challlenges on this site urge you to learn new things: Computer languages, cryptologic techniques, file formats.
This one is special to Java (and probably close relatives like C#). It won't work in PHP.