vote up 80 vote down star
61
  1. what is simple solution
  2. what is effective solution to less minimum memory and(or) cpu speed?
flag
9  
What's with the downvoting? I don't mind doing this guys homework so long as he says 'thank you'. – Mike F Sep 26 '08 at 4:42
23  
I don't care if it was a homework question. It gave me food for thought. – Brent.Longborough Sep 26 '08 at 5:12
11  
PLZSENDTEHCODEZ! – Rob Cooper Sep 26 '08 at 5:36
5  
I've said many times that we should have the option to include a reason when downvoting, but it never gets voted up enough on uservoice. – Kyralessa Jan 15 '09 at 4:33
5  
"if people want to leave comments, they can; forcing them won't achieve anything except prevent participation" – echorhyn May 4 at 5:46
show 10 more comments

31 Answers

prev 1 2
vote up 0 vote down

The function you need is *rand1_7()*, I wrote rand1_5() so that you can test it and plot it.

import numpy
def rand1_5():
    return numpy.random.randint(5)+1

def rand1_7():
    q = 0
    for i in xrange(7):  q+= rand1_5()
    return q%7 + 1
link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.