{ "mms-header": { "search": "검색", "piano": "피아노", "guitar": "기타", "artists": "아티스트", "create-an-account": "회원가입", "cart": "장바구니", "my-page": "마이 페이지", "settings": "설정",
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mms-header": { | |
"search": "검색", | |
"piano": "피아노", | |
"guitar": "기타", | |
"artists": "아티스트", | |
"create-an-account": "회원가입", | |
"cart": "장바구니", | |
"my-page": "마이 페이지", | |
"settings": "설정", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const readline = require('readline'); | |
const r = readline.createInterface({ | |
input: process.stdin, | |
output: process.stdout | |
}); | |
const UTF8_NUMBERS = { | |
'일': 1, '이': 2, '삼': 3, '사': 4, | |
'오': 5, '육': 6, '칠': 7, '팔': 8, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Test #1 | |
// Write a command-line program that prints out the sum of two non-negative integers as input arguments. | |
// You must not use any built-in BigInteger library or convert the inputs to integer directly. | |
const readline = require('readline'); | |
const r = readline.createInterface({ | |
input: process.stdin, | |
output: process.stdout | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getZeroOrOne() { | |
return Math.floor(Math.random() * 2) | |
} | |
function getRandom(n) { | |
if (!n || n < 1) return | |
if (n === 1) return 0 | |
/** | |
* 중첩 배열 만들기 |
setDeliveryGoodMorningAvailability 함수가 새벽 배송 가능 여부를 알려주는듯!
- setDeliveryGoodMorningAvailability 함수의 parameter인 addresses
NewerOlder