Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env node
const readline = require('readline');
const integerToString = ['', '', '이', '삼', '사', '오', '육', '칠', '팔', '구'];
const stringToInteger = {
영: 0,
일: 1,
이: 2,
삼: 3,
#!/usr/bin/env node
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
console.clear();