1158. 요세푸스 문제 - node.js / javascript
문제
내 코드
let fs = require("fs");
let input = fs.readFileSync("/dev/stdin").toString().trim().split(" ");
const N = input[0];
const K = input[1];
const array = Array.from({ length: N }, (v, i) => i + 1);
let result = "<";
while (array.length) {
for (let i = 0; i < K; i++) {
array.push(array.shift());
}
if (array.length === 1) {
result += `${array.pop()}>`;
} else {
result += `${array.pop()}, `;
}
}
console.log(result);
깃허브 링크
let fs = require("fs");
let input = fs.readFileSync("/dev/stdin").toString().trim().split(" ");
const N = input[0];
const K = input[1];
const array = Array.from({ length: N }, (v, i) => i + 1);
let result = "<";
while (array.length) {
for (let i = 0; i < K; i++) {
array.push(array.shift());
}
if (array.length === 1) {
result += `${array.pop()}>`;
} else {
result += `${array.pop()}, `;
}
}
console.log(result);
https://github.com/highjoon/JS_Algorithm/blob/master/BOJ/%ED%81%90/1158.js
Author And Source
이 문제에 관하여(1158. 요세푸스 문제 - node.js / javascript), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@arthur/1158.-요세푸스-문제-node.js-javascript저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)