在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ Given an integer array sorted in non-decreasing order, there is exactly one integer in the array that occurs more than 25% of the time. Return that integer.
Example 1: Input: arr = [1,2,2,6,6,6,6,7,10] Constraints: 1 <= arr.length <= 10^4 给你一个非递减的 有序 整数数组,已知这个数组中恰好有一个整数,它的出现次数超过数组元素总数的 25%。 请你找到并返回这个整数
示例: 输入:arr = [1,2,2,6,6,6,6,7,10] 提示: 1 <= arr.length <= 10^4 |
请发表评论