Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSaqib Ishfaq
13,912 Points2nd part of the challenge
i dont get 2nd part of the challenge. like how does it work to create a random number between top and bottom number and the why do we have to add 1 in it again? and then you also added bottom number to the result.....i thought we add 1 to make 1 inclusive in the range, like in the 1st part of the challenge. played video over n over again to hold the grip of it, but just getting confused i guess, any simple solution?
3 Answers
Steven Parker
231,236 PointsThe formula to convert a random number from 0 (inclusive) to 1 (exclusive) into an inclusive range is:
floor( random * range ) + minimum
where "range" is: maximum - minimum + 1
The reason you add one to the difference between the values is to make the range wide enough to cover both the limits. Then after multiplying (and using the floor function to get integer values) the range is correct but the lowest possible value is still 0. So you add the minimum back in to shift the range up between (and including) the limits.
if the minimum value of the range will be 1, you can simplify the formula to: floor( random * maximum ) + 1
Saqib Ishfaq
13,912 PointsOk I understand abit more now but still little difficult for me to grasp all that ! Is it normal for me to feel at this stage ? I feel like I can remember it now n might forget later on again, I dnt wana Jst get this challenge right n move on I wana fully understand all how it works. Do I suggest I shud do this move on to next? As m still in process of learning the whole programming!
Steven Parker
231,236 PointsDon't worry about remembering formulas, you can always look them up when you need them. You've got plenty to do working on the basic concepts of programming.
Saqib Ishfaq
13,912 PointsYeh true. Thanks a lot for ur help!
Mark Wowor
Front End Web Development Techdegree Student 14,630 PointsMark Wowor
Front End Web Development Techdegree Student 14,630 PointsThank you for your explanation. That's helpful.