Who has two thumbs and remembers the rudiments of his linear algebra courses? Apparently, this guy.

This commit is contained in:
kolaente 2022-08-14 12:39:49 +02:00
parent 86dcb79aa3
commit 86f443ef73
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 4 deletions

View File

@ -12,10 +12,6 @@ func FizzBuzz() {
}
func fizzOrBuzz(number int) string {
if number == 15 {
return "FizzBuzz"
}
three := handle3(number)
five := handle5(number)
if three != "" || five != "" {