Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift Collections and Control Flow Control Flow With Conditional Statements FizzBuzz Challenge

I dont know where my problem is !

Pls tell me where is the problem

fizzBuzz.swift
func fizzBuzz(n: Int) -> String {
    if n % 6 == 0 {
    return "Fizz"
    } else if n % 6 == 0 {
        return "Buzz"
    }else if n%5 == 0 && n%5 == 0 {
        return "FizzBuzz"
    } else {
        return""
    }
    return "\(n)"
}

2 Answers

Jeff McDivitt
Jeff McDivitt
23,970 Points

Hi Michael - After looking at your code further, there are several issues. You are not checking the correct inputs (I would go back and watch the instructions video). To answer your question on this one though you need to check and return 'Fizzbuzz" first before you can check the other variables

func fizzBuzz(n: Int) -> String {
    // Enter your code between the two comment markers
    if (n % 3 == 0) && (n % 5 == 0) {
        return("FizzBuzz")
    } else if (n % 3 == 0) {
        return ("Fizz")
    } else if (n % 5 == 0) {
        return("Buzz")
    } else {
        return("n")
    }
    // End code
}
Jeff McDivitt
Jeff McDivitt
23,970 Points

Hi Michael -

This is a common mistake that is made on the particular challenge as it is asked in some coding interviews. You need to return "FizzBuzz" first, you should be able to figure it out from there

HI Jeff , so I return FizzBuzz but from where ? else { return"FizzBuzz" } Like this ?