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

Alexandre Serra Jaumot
Alexandre Serra Jaumot
6,977 Points

My solutions runs correctly in XCode but not in TreeHouse Editor.

fizzBuzz.swift
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
}

try using semicolon ; after var m and return m.

1 Answer

Anjali Pasupathy
Anjali Pasupathy
28,883 Points

Change all your sixes to threes. You should be checking to see if the numbers are divisible by 3, not 6.

I hope this helps!