leetcode 1月13日每日一题 747. 至少是其他数字两倍的最大数
Posted 陵游gentian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 1月13日每日一题 747. 至少是其他数字两倍的最大数相关的知识,希望对你有一定的参考价值。
菜题,我觉得应该不会有人看这篇博客。
AC代码:
class Solution
public:
int dominantIndex(vector<int>& nums)
int n = nums.size();
if(n == 1)
return 0;
int max = 0;
int res;
for(int i = 0; i < n; i++)
if(nums[i] > max)
res = i;
max = nums[i];
sort(nums.begin(), nums.end());
if(nums[n - 1] >= nums[n - 2] * 2)
return res;
return -1;
;
以上是关于leetcode 1月13日每日一题 747. 至少是其他数字两倍的最大数的主要内容,如果未能解决你的问题,请参考以下文章
leetcode 1月9日每日一题 1629. 按键持续时间最长的键
leetcode 1月9日每日一题 1629. 按键持续时间最长的键