1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/7kyu/categorize_new_member/solution.js

13 lines
203 B
JavaScript
Raw Normal View History

function openOrSenior(data){
let result = [];
for (let pair of data) {
if (pair[0] >= 55 && pair[1] > 7)
result.push("Senior");
else
result.push("Open");
}
return result;
}