Fork me on GitHub
摘要: 很简单 可以用hash表进行模拟,也可以用数组来做,因为题目已经给了数的范围 class Solution { public int mostFrequentEven(int[] nums) { int[] count = new int[100001]; int res = -1; int res 阅读全文
posted @ 2023-04-13 21:54 RickieRun 阅读(18) 评论(0) 推荐(0)
Live2D