LeetCode 470. Implement Rand10() Using Rand7()

题目

Given the API rand7() that generates a uniform random integer in the range [1, 7], write a function rand10() that generates a uniform random integer in the range [1, 10]. You can only call the API rand7(), and you shouldn’t call any other API. Please do not use a language’s built-in random API.

Each test case will have one internal argument n, the number of times that your implemented function rand10() will be called while testing. Note that this is not an argument passed to rand10().

Follow up:

  • What is the expected value for the number of calls to rand7() function?
  • Could you minimize the number of calls to rand7()?

Example 1:

1
2
Input: n = 1
Output: [2]

Example 2:

1
2
Input: n = 2
Output: [2,8]

Example 3:

1
2
Input: n = 3
Output: [3,8,10]

Constraints:

  • 1 <= n <= 10^5

思路

Solution.

  • Approach 1: Rejection Sampling
  • Approach 2: Utilizing out-of-range samples

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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:
r1, r2 = rand7(), rand7()
r = r1 + (r2-1)*7
if r <= 40:
return r % 10 + 1