747-LeetCode 至少是其他数字两倍的最大数
Posted zhouixi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了747-LeetCode 至少是其他数字两倍的最大数相关的知识,希望对你有一定的参考价值。
解:
class Solution { public int dominantIndex(int[] nums) { for(int i = 0 ; i < nums.length ; i ++ ) { int max = nums[i]; for(int k = 0 ; k < nums.length ; k ++ ) { if(max < nums[k] * 2 && k != i ) { break; } if(k == nums.length -1) { return i; } } } return -1 ; } }
以上是关于747-LeetCode 至少是其他数字两倍的最大数的主要内容,如果未能解决你的问题,请参考以下文章