1365. 有多少小于当前数字的数字
Posted duancf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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; } }
以上是关于1365. 有多少小于当前数字的数字的主要内容,如果未能解决你的问题,请参考以下文章
算法1365. 有多少小于当前数字的数字(java / c / c++ / python / go / rust)
算法leetcode每日一练1365. 有多少小于当前数字的数字