题解 | #数字在升序数组中出现的次数#
数字在升序数组中出现的次数
https://www.nowcoder.com/practice/70610bf967994b22bb1c26f9ae901fa2
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param nums int整型一维数组
* @param k int整型
* @return int整型
*/
export function GetNumberOfK(nums: number[], k: number): number {
// write code here
let count = 0
for(let i = 0;i < nums.length;i++){
if(k !== nums[i]){
continue
}
count++
}
return count
}
查看9道真题和解析
