let n = [];
function f() {
return (n[0] === 0) ? true : false;
}
let n = [];
for(let i = 0; i < n.length; i++) {
console.log(n[i]);
}
let n = [];
for(let i = 0; i < n.length; i++) {
for(let j = 0; j < n.length; j++) {
console.log(i + j);
}
}
let n = []
let m = [];
for(let i=0; i<n.length; i++){
for(let j=0; j<m.length; j++){
console.log(i + j);
}
}
let n = [];
for(let i = 0; i < n.length; i++) {
for(let j = 0; j < n.length; j++) {
for(let k = 0; k < n.length; k++){
console.log(i + j + k);
}
}
}
function f(n) {
if(n <== 0) return 0;
else if(n === 1) return 1;
return f(n - 1) + f(n - 2);
};
이건 이진탐색을 정리할 때, 코드를 첨부해야겠다.