Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Comments on Golf golf challenge

Parent

Golf golf challenge

+6
−0

The task is to create a program which displays a golf score as text. It takes 2 numbers as input, separated by space or new line:

  • The first number is the par of the specific hole.
  • The second number is the score that the player got.

The program should print the textual golf term for the result, given the par. Trailing spaces or line feed are allowed.

Par can be a value between 3 to 5 and is the score that the average golf player is expected to get at that hole for their result to be considered fine. A score lower than par is considered good, a score above par is considered bad.

  • A score of 1 is always called "Hole in one".
  • A score of -3 below par is called "Albatross".
  • A score of -2 below par is called "Eagle".
  • A score of -1 below par is called "Birdie".
  • A score of +1 above par is called "Bogey".
  • A score of +2 above par is called "Double bogey".
  • A score of +3 above par is called "Triple bogey".

Scores higher than +3 above par need not be supported by this program. Thus the score will always be a number between 1 and 5+3=8.

Examples of input and output:

4 4
Par

4 3
Birdie

4 5
Bogey

4 2
Eagle

5 2 
Albatross

3 1
Hole in one

4 1
Hole in one

3 6
Triple bogey

5 8
Triple bogey

4 6
Double bogey

This is (code) golf, shortest source per language wins.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

Casing (2 comments)
Post
+4
−0

Ruby, 110 106 bytes

Fixed capitalization and refactored for -4.

->p,s{d=s-p
s<2&&"Hole in one"||%w[Albatross Eagle Birdie Par Bogey Double Triple][d+3]+(d>1?" bogey":"")}

Attempt This Online!

History
Why does this post require moderator attention?
You might want to add some details to your flag.

2 comment threads

102 bytes (1 comment)
Incorrect capitalisation (2 comments)
Incorrect capitalisation
celtschk‭ wrote over 2 years ago

Your capitalisation is wrong. That's easy to fix in “Hole in one”, but changing the capitalisation of “Double bogey”/“Triple bogey” without changing “Bogey” as well surely makes the code longer.

snail_‭ wrote over 2 years ago

Fixed, and made the code shorter :)