题目
题解:
代码:
# The rand7() API is already defined for you.
# def rand7():
# @return a random integer in the range 1 to 7
class Solution:
def rand10(self):
"""
:rtype: int
"""
while True:
nums = (rand7()-1)*7 + rand7()
if nums <= 40:
return nums % 10 + 1