Keep up the hoop
Alex just got a new hula-hoop, he loves it but feels discouraged because his little brother is better than him.
Write a program where Alex can input (n) how many times the hoop goes round, and it will return him an encouraging message :)
function hoopCount(n: number): string {
return n >= 10 ? "Great, now move on to tricks" : "Keep at it until you get it";
}
func hoopCount(n int) string {
if n >= 10 {
return "Great, now move on to tricks"
} else {
return "Keep at it until you get it"
}
}
def hoop_count(n):
return "Great, now move on to tricks" if n >= 10 else "Keep at it until you get it"
function hoopCount($n) {
return $n >= 10 ? "Great, now move on to tricks" : "Keep at it until you get it";
}
Go to Kata
Want us to give you some help with your business? No problem, here's a video on who we can help, and how, along with our calendar so you can book in a call to discuss us working together.
Let's see