function A(str) {
let result = {}
for(let i = 0; i < str.length; i++){
let count = 0
for(let j = i; j < str.length; j++){
if(str[i] === str[j]){
count = count + 1
}
}
result[str[i]] = count
//반면 객체의 할당은 단순히 i반복문의 일부로서 j반복문을 포괄할 수있는 힘이없다.
}
return result
// TODO: 여기에 코드를 작성합니다.
}
//확실히 객체와 배열은 뭔가 다르다
function A(str) {
let result = []
for(let i = 0; i < str.length; i++){
let count = 0
for(let j = i; j < str.length; j++){
if(str[i] === str[j]){
count = count + 1
}
}
result.push(str[i] + count)
//---> push는 함수 그래서 i반복문이 한번 끝나고 결과값을 내야작동
}
return result
// TODO: 여기에 코드를 작성합니다.
}