GG FACTORYGG FACTORY
Discord
태그 목록

#프로그래머스 qr code JavaScript

총 1개의 글

함께 자주 언급되는 태그#프로그래머스 qr code#프로그래머스 qr code 자바스크립트#qr code 문제
기술#프로그래머스 qr code#프로그래머스 qr code 자바스크립트#프로그래머스 qr code JavaScript

프로그래머스 qr code Lv.0

function solution(q, r, code) { let answer = ''; for (let i = 0; i < code.length; i++) { if (i % q === r) { answer += code[i]; } } return answer; } co...

2024년 12월 31일160