摘要: //扔 n 个骰子,向上面的数字之和为 S。给定 Given n,请列出所有可能的 S 值及其相应的概率public class Solution { /** * @param n an integer * @return a list of Map.Entry */ public List> dicesSum(int n) { //... 阅读全文
posted @ 2018-12-05 20:55 宇枫 阅读(917) 评论(0) 推荐(0) 编辑