You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
305 B
13 lines
305 B
function fullHouse(wuerfelArr){
|
|
|
|
let countObj = {}
|
|
for(let x of wuerfelArr){
|
|
countObj[x] = (countObj[x] || 0) + 1;
|
|
}
|
|
let vals = Object.values(countObj);
|
|
if((vals[0] === 2 && vals[1] === 3) || (vals[1] === 2 && vals[0] === 3)){
|
|
return 25;
|
|
}
|
|
return 0;
|
|
|
|
}
|