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

给你一个数组 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;
        }
    }
    

      

猜你喜欢

转载自www.cnblogs.com/Duancf/p/12404151.html
今日推荐