Categorize New Member
Description:
The Western Suburbs Croquet Club has two categories of membership, Senior and Open. They would like your help with an application form that will tell prospective members which category they will be placed.
To be a senior, a member must be at least 55 years old and have a handicap greater than 7. In this croquet club, handicaps range from -2 to +26; the better the player the lower the handicap.
Input
Input will consist of a list of pairs. Each pair contains information for a single potential member. Information consists of an integer for the person's age and an integer for the person's handicap.
Output
Output will consist of a list of string values (in Haskell and C: Open
or Senior
) stating whether the respective member is to be placed in the senior or open category.
Example
input = [[18, 20], [45, 2], [61, 12], [37, 6], [21, 21], [78, 9]]
output = ["Open", "Open", "Senior", "Open", "Open", "Senior"]
Similar Kata:
Stats:
Created | Mar 13, 2015 |
Published | Mar 13, 2015 |
Warriors Trained | 306248 |
Total Skips | 33209 |
Total Code Submissions | 418072 |
Total Times Completed | 173596 |
Python Completions | 77896 |
JavaScript Completions | 74357 |
Haskell Completions | 1929 |
Ruby Completions | 6631 |
C# Completions | 9570 |
F# Completions | 213 |
Rust Completions | 2670 |
Groovy Completions | 89 |
C Completions | 1416 |
Factor Completions | 18 |
Scala Completions | 116 |
Clojure Completions | 24 |
TypeScript Completions | 620 |
Lua Completions | 31 |
PHP Completions | 221 |
Total Stars | 1627 |
% of votes with a positive feedback rating | 90% of 14198 |
Total "Very Satisfied" Votes | 11527 |
Total "Somewhat Satisfied" Votes | 2400 |
Total "Not Satisfied" Votes | 271 |