码迷,mamicode.com
首页 > 其他好文 > 详细

1365. 有多少小于当前数字的数字

时间:2020-03-03 20:28:15      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:pre   个数   数组   nbsp   必须   for   中比   highlight   public   

给你一个数组 nums,对于其中每个元素 nums[i],请你统计数组中比它小的所有数字的数目。

换而言之,对于每个 nums[i] 你必须计算出有效的 j 的数量,其中 j 满足 j != i 且 nums[j] < nums[i] 。

以数组形式返回答案。

提示:

  • 2 <= nums.length <= 500
  • 0 <= nums[i] <= 100
    class Solution {
        public int[] smallerNumbersThanCurrent(int[] nums) {
            int [] a = new int [nums.length];
            for(int i = 0; i < nums.length; i++)
            {
                for(int j = 0; j < nums.length; j++)
                {
                    if(i != j)
                    {
                        if(nums[i] > nums[j])
                        {
                            a[i] = a[i] + 1;
                        }
                    }
                }
            }
            return a;
        }
    }
    

      

1365. 有多少小于当前数字的数字

标签:pre   个数   数组   nbsp   必须   for   中比   highlight   public   

原文地址:https://www.cnblogs.com/Duancf/p/12404151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!