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

Please help with the solution

Please guide me through the mistake

fizzBuzz.swift
func fizzBuzz(n: Int) -> String {
  // Enter your code between the two comment markers
  if(n%6 == 0){
  return "Fizz"
  }else if(n%5 == 0){
  return "Buzz"
  }else if(n%15 == 0){
  return "FizzBuzz"
  }


  // End code
  return "\(n)"
}

1 Answer

Jeff McDivitt
Jeff McDivitt
23,970 Points

There are several ways to solve this

  1. You correctly laid out your IF statements, the problem is you have the incorrect values in there. I would suggest going back and watching the video when Pasan explains the task. You need to check the FizzBuzz values first or the rest of the IF statement will give incorrect results (this is where most individuals make a mistake when they are tested with this question for employment. You then simply check the other two values. Also yo are missing the final ELSE clause in your code. The structure is correct you just need to focus on the values :) Hope that helps!
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
}