题目描述:
数字 1 - 9 中有 2 个数为“目标数”。
游戏者拥有 5 次机会,每次从1 - 9中选择 2 个数字,裁判会告知其选对的数字个数。
问题一:
求 5 次猜测中的某一次,游戏者猜对全部 2 个目标数的概率。
答案解析:
假设游戏者按照 1 2 , 3 4 , 5 6 , 7 8 的顺序猜测, 5 次猜测全部失败的情况:
情况一: 1-8 中有一个数,另一个数字是 ...
题目描述:
数字 1 - 9 中有 2 个数为“目标数”。
游戏者拥有 5 次机会,每次从1 - 9中选择 2 个数字,裁判会告知其选对的数字个数。
问题一:
求 5 次猜测中的某一次,游戏者猜对全部 2 个目标数的概率。
答案解析:
假设游戏者按照 1 2 , 3 4 , 5 6 , 7 8 的顺序猜测, 5 次猜测全部失败的情况:
情况一: 1-8 中有一个数,另一个数字是 ...
LeetCode Weekly Contest 5是LeetCode举办的第四场正式周赛,共4道题目,比赛时长2.5小时。
比赛链接:https://leetcode.com/contest/leetcode-weekly-contest-5/
题解列表:
A frog is crossing a river. The river is divided into x units and at each unit there may or may not exist a stone. The frog can jump on a stone, but it must ...
Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible.
Note:
A binary watch has 4 LEDs on the top which represent the hours (0-11), and the 6 LEDs on the bottom represent the minutes (0-59).
Each LED represents a zero or one, with the least ...