목록BOJ (74)
언젠가는 펼쳐 볼 아카이브
사용언어 : javascript - node.js #제출 코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; const input = fs.readFileSync(filePath).toString().split('\n'); solution(input); function solution(input) { const num = +input[0]; let result = 0; for (let i = 1; i
사용언어 : javascript - node.js #제출코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; const input = fs.readFileSync(filePath).toString().trim(); solution(input); function solution(input) { let str = input; const alpha = ['c=', 'c-', 'dz=', 'd-', 'lj', 'nj', 's=', 'z=']; for (let cro of alpha) { str = str.split(cro).join('!'); } console.log(str...
사용언어 : javascript - node.js #제출코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; const input = fs.readFileSync(filePath).toString().trim(); solution(input); function solution(input) { let str = input.toUpperCase(); let count = 0; let answer = ''; let strArr = []; for (let i = 0; i < str.length; i++) { let alpha = str[i]; if (!strArr[alpha]..
사용언어: javascript - node.js #제출코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; const input = fs.readFileSync(filePath).toString().trim(); solution(+input); function solution(input) { // 정방향 for (let i = 0; i < input - 1; i++) { let star = '*'.repeat(2 * i + 1); let space = ' '.repeat(input - i); console.log(space + star); } //역방향 for (let..