Multiples of 3 or 5
Return if a number is a multiple of 3 and 5.
function multiple3And5(n: number): boolean {
return n % 15 == 0;
}
func Multiple3And5(n int) bool {
return n % 15 == 0
}
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