0
我有集合的集合。得到集合中的最大集合
我想獲得集合中最大的集合。
我寫了效果很好的功能,但我敢肯定,這是可以做到更快:
private function getMaxFightersByEntity($userGroups): int
{
$max = 0;
foreach ($userGroups as $userGroup) { // $userGroup is another Collection
if (count($userGroup) > $max) {
$max = count($userGroup);
}
}
return $max;
}
我敢肯定有一個更好的方式來管理的集合,但真的不知道。
任何人都有更好的解決方案?
我喜歡它!可能會這樣做 –