leetcode1133
Posted asenyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1133相关的知识,希望对你有一定的参考价值。
1 import collections 2 class Solution: 3 def largestUniqueNumber(self, A: ‘List[int]‘) -> int: 4 obj = collections.Counter(A) 5 re = -1 6 for k,v in obj.items(): 7 if v == 1 and k >re: 8 re = k 9 return re
以上是关于leetcode1133的主要内容,如果未能解决你的问题,请参考以下文章
1133 Splitting A Linked List (25 分)