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 2.0 Collections and Control Flow Control Flow With Conditional Statements FizzBuzz

Chad Leonard
Chad Leonard
4,368 Points

...Swift code for "FizzBuzz" challenge works fine in the compiler, but won't work in the editor?

I have made the edits as instructed, but continue to get an error. Not sure what I have missed? This is the code as it is in the editor.

for n in 1...100 {

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

}

}

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Would it be encouraging to know that your code is fine and your logic is spot on? :thumbsup: The problem here is that you missed part of the instructions:

"Note: Do not worry about the default case (where the number doesn't match Fizz, Buzz, or FizzBuzz). The code in the challenge editor already takes care of that by returning the number as a string using string interpolation.

The challenge also does not need you to loop over a range of values (using for or while). I'll take care of that."

What this means is that you should remove the last else statement and the for in range :smile: Make those changes, and your code passes!

Chad Leonard
Chad Leonard
4,368 Points

Thanks a bunch! Guess it would help if I knew how to follow directions :smiley: