leetcode914
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode914相关的知识,希望对你有一定的参考价值。
public class Solution { public bool HasGroupsSizeX(int[] deck) { var len = deck.Length; for (int i = 2; i <= len; i++)//i表示每组的卡牌数量 { if (len % i != 0) { continue; } else { var pati = len / i;//分组 var list = deck.OrderBy(x => x).ToList(); var num = 0; for (int j = 0; j < pati; j++) { var patlist = list.Skip(j * i).Take(i).ToList(); var gp = patlist.GroupBy(x => x).Count(); if (gp == 1) { num++; } else { break; } } if (num == pati) { return true; } } } return false; } }
本周的新题目,也是目前easy中的最后一题,算是一个阶段完成了吧。
以上是关于leetcode914的主要内容,如果未能解决你的问题,请参考以下文章