我是靠谱客的博主 不安乐曲,最近开发中收集的这篇文章主要介绍LeetCode 914. 卡牌分组一、中文版二、英文版三、My answer四、解题报告,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Table of Contents

一、中文版

二、英文版

三、My answer

四、解题报告

 


一、中文版

给定一副牌,每张牌上都写着一个整数。

此时,你需要选定一个数字 X,使我们可以将整副牌按下述规则分成 1 组或更多组:

每组都有 X 张牌。
组内所有的牌上都写着相同的整数。
仅当你可选的 X >= 2 时返回 true。

 

示例 1:

输入:[1,2,3,4,4,3,2,1]
输出:true
解释:可行的分组是 [1,1],[2,2],[3,3],[4,4]
示例 2:

输入:[1,1,1,2,2,2,3,3]
输出:false
解释:没有满足要求的分组。
示例 3:

输入:[1]
输出:false
解释:没有满足要求的分组。
示例 4:

输入:[1,1]
输出:true
解释:可行的分组是 [1,1]
示例 5:

输入:[1,1,2,2,2,2]
输出:true
解释:可行的分组是 [1,1],[2,2],[2,2]

提示:

1 <= deck.length <= 10000
0 <= deck[i] < 10000

二、英文版

In a deck of cards, each card has an integer written on it.

Return true if and only if you can choose X >= 2 such that it is possible to split the entire deck into 1 or more groups of cards, where:

Each group has exactly X cards.
All the cards in each group have the same integer.
 

Example 1:

Input: deck = [1,2,3,4,4,3,2,1]
Output: true
Explanation: Possible partition [1,1],[2,2],[3,3],[4,4].
Example 2:

Input: deck = [1,1,1,2,2,2,3,3]
Output: false´
Explanation: No possible partition.
Example 3:

Input: deck = [1]
Output: false
Explanation: No possible partition.
Example 4:

Input: deck = [1,1]
Output: true
Explanation: Possible partition [1,1].
Example 5:

Input: deck = [1,1,2,2,2,2]
Output: true
Explanation: Possible partition [1,1],[2,2],[2,2].
 

Constraints:

1 <= deck.length <= 10^4
0 <= deck[i] < 10^4

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/x-of-a-kind-in-a-deck-of-cards
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

三、My answer

本人的代码实在丑陋,这道题 LeetCode 官方答案深得我心,特意记录下来。

class Solution:
    def hasGroupsSizeX(self, deck: List[int]) -> bool:

        # version 1:
        # from fractions import gcd
        # vals = collections.Counter(deck).values()
        # return reduce(gcd,vals) >= 2

        # version 2:
        d_counter = collections.Counter(deck)
        N = len(deck)
        for X in range(2, N + 1):
            if N % X == 0:
                if all(v % X == 0 for v in d_counter.values()):
                    return True
        return False

四、解题报告

详细讲解在:https://leetcode-cn.com/problems/x-of-a-kind-in-a-deck-of-cards/solution/qia-pai-fen-zu-by-leetcode-solution/

由本题解学到两个函数的用法:

1、reduce() https://www.runoob.com/python/python-func-reduce.html

2、all() https://www.runoob.com/python/python-func-all.html

最后

以上就是不安乐曲为你收集整理的LeetCode 914. 卡牌分组一、中文版二、英文版三、My answer四、解题报告的全部内容,希望文章能够帮你解决LeetCode 914. 卡牌分组一、中文版二、英文版三、My answer四、解题报告所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(76)

评论列表共有 0 条评论

立即
投稿
返回
顶部