题目
一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)。
在一个长度为n的数组里的所有数字都在0到n-1的范围内。 数组中某些数字是重复的,但不知道有几个数字是重复的。也不知道每个数字重复几次。请找出数组中任意一个重复的数字。 例如,如果输入长度为7的数组{2,3,1,0,2,5,3},那么对应的输出是第一个重复的数字2。
(1)新建一个数组index,遍历原数组numbers,用numbers[i]作为下标访问数组index,并将index[ numbers[i] ] ++;
(2)遍历数组index,如果遇到index[i] >= 2,说明有重复数字,返回true,否则遍历结束之后返回false即可。
public class Solution {
public boolean duplicate(int numbers[],int length,int [] duplication) {
int [] index = new int[length+1]; //index的容量多设些
int i = 0;
//遍历numbers数组并更新index数组
for(i = 0; i < length; i++){
index[numbers[i]] ++;
}
//判断有没有重复数字
for(i = 0; i < length; i++){
if(index[i] >= 2){
duplication[0] = i;
return true;
}
}
return false;
}
} //O(n)
tag:
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent: meta: false pages: false posts: title: true date: true path: true text: false raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true