CodeWars 코딩 문제 2021/05/27 - Turn String Input into Hash
[문제]
Please write a function that will take a string as input and return a hash. The string will be formatted as such. The key will always be a symbol and the value will always be an integer.
"a=1, b=2, c=3, d=4"
This string should return a hash that looks like
{ 'a': 1, 'b': 2, 'c': 3, 'd': 4}
(요약) 주어진 문자열을 객체로 만들어라.
[풀이]
function strToHash(str){
if(!str.length) return {};
const answer = {};
str.split(', ').forEach(str => {
const temp = str.split('=');
answer[temp[0]] = temp[1]|0;
})
return answer;
}
적당히 split()
을 이용해 원하는 형식에 맞게 만들어주면 됨.
Author And Source
이 문제에 관하여(CodeWars 코딩 문제 2021/05/27 - Turn String Input into Hash), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@hemtory/CodeWars20210527
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
function strToHash(str){
if(!str.length) return {};
const answer = {};
str.split(', ').forEach(str => {
const temp = str.split('=');
answer[temp[0]] = temp[1]|0;
})
return answer;
}
적당히 split()
을 이용해 원하는 형식에 맞게 만들어주면 됨.
Author And Source
이 문제에 관하여(CodeWars 코딩 문제 2021/05/27 - Turn String Input into Hash), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hemtory/CodeWars20210527저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)