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 trialAlexandre Serra Jaumot
6,977 PointsMy solutions runs correctly in XCode but not in TreeHouse Editor.
func fizzBuzz(n: Int) -> String {
var m = ""
if (n%6 == 0) { m.appendContentsOf("Fizz")}
if (n%5 == 0) { m.appendContentsOf("Buzz")}
if !(n%6 == 0) && !(n%5 == 0) { m = "\(n)" }
return m
}
1 Answer
Anjali Pasupathy
28,883 PointsChange all your sixes to threes. You should be checking to see if the numbers are divisible by 3, not 6.
I hope this helps!
Alexandre Serra Jaumot
6,977 PointsThanks! I thought 6 was written!
Anjali Pasupathy
28,883 PointsYou're welcome! (:
Aditya Prakarsa
39,803 PointsAditya Prakarsa
39,803 Pointstry using semicolon ; after var m and return m.