题解 | #杨辉三角的变形#
杨辉三角的变形
https://www.nowcoder.com/practice/8ef655edf42d4e08b44be4d777edbf43
const rl = require("readline").createInterface({ input: process.stdin });
var iter = rl[Symbol.asyncIterator]();
const readline = async () => (await iter.next()).value;
void async function () {
// Write your code here
while(line = await readline()){
let tokens = line.split(' ');
let a = parseInt(tokens[0]);
// let b = parseInt(tokens[1]);
if(a <= 2) { console.log(-1); break; }
if(a % 2 == 1) { console.log(2); break; }
if(a % 4 == 0) { console.log(3); break; }
if(a % 4 == 2) { console.log(4); break; }
// console.log(line);
}
}()
#华为机试题#华为机试题 文章被收录于专栏
华为机试题

