题目
给你一个可能含有 重复元素 的整数数组 nums ,请你随机输出给定的目标数字 target 的索引。你可以假设给定的数字一定存在于数组中。
- 实现 Solution 类: Solution(int[] nums) 用数组 nums 初始化对象。 int pick(int
- target) 从 nums 中选出一个满足 nums[i] == target 的随机索引 i
。如果存在多个有效的索引,则每个索引的返回概率应当相等。
实例
输入
["Solution", "pick", "pick", "pick"]
[[[1, 2, 3, 3, 3]], [3], [1], [3]]
输出
[null, 4, 0, 2]
解释
Solution solution = new Solution([1, 2, 3, 3, 3]);
solution.pick(3);
solution.pick(1);
solution.pick(3);
我的答案
- 注意
this 的使用 - 遍历给的数组 , 如果是target , 把对应索引放到一个新数组里面 , 然后获得随机数
0-(数组长度-1) , 返回新数组里面的对应索引的值
var Solution = function(nums) {
this.nums = nums
};
Solution.prototype.pick = function(target) {
let index = []
for (i in this.nums) {
if (this.nums[i] === target) {
index.push(i)
}
}
let length = index.length
let random = Math.floor(Math.random() * length)
return index[random]
};
|