に見せかける
4515 ワード
コード#コード#
function solution(clothes) {
var answer = 1
let obj = {}
for (let cloth of clothes) {
if (obj[cloth[1]]) {
obj[cloth[1]]++
} else {
obj[cloth[1]] = 1
}
}
console.log(Object.keys(obj))
for (let i of Object.keys(obj)) {
answer *= obj[i] + 1
}
console.log(answer)
return answer - 1
}
solution([
["yellowhat", "headgear"],
["bluesunglasses", "eyewear"],
["green_turban", "headgear"],
])
同時発生なので、
answer
を掛けます最後に何も着ていない場合を取り除きます.
Reference
この問題について(に見せかける), 我々は、より多くの情報をここで見つけました https://velog.io/@aksel26/위장テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol