摘要: 问题: 用a,e,i,o,u构成字符串,前面的字符一定是后面字符的字母序之前。 构成长度为n的字符串,有多少种方法。 Example 1: Input: n = 1 Output: 5 Explanation: The 5 sorted strings that consist of vowels 阅读全文
posted @ 2021-02-14 16:41 habibah_chang 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 问题: 给定一组数,将其分配给多个用户, 每个用户要求quantity[i]个相同的数。 问是否能够分配完。 Example 1: Input: nums = [1,2,3,4], quantity = [2] Output: false Explanation: The 0th customer 阅读全文
posted @ 2021-02-14 14:46 habibah_chang 阅读(83) 评论(0) 推荐(0) 编辑