Random (Java) - ShuweiLeung/Thinking GitHub Wiki
1.(470:Medium)Implement Rand10() Using Rand7()
- 这是一个概率问题,参考讲解:https://zxi.mytechroad.com/blog/math/leetcode-470-implement-rand10-using-rand7/
- 在使用公式
((a-1)*7+b-1)%10+1
且(a-1)*7+b-1 < 40
条件下,1-10是等概率产生的