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 trialRicky Burton
1,094 PointsFizzBuzz code challenge
Hi all,
Can someone explain why the code below will not work? I have used the same code in Xcode and it works fine. Error message asks me to recheck the logic for "Fizz". but I can see the issues if there is one.
help if you can. Cheers.
func fizzBuzz(n: Int) -> String {
// Enter your code between the two comment markers
for n in 1...100 {
if (n % 3 == 0) && (n % 5 == 0) {
print("FizzBuzz")
} else if (n % 3 == 0){
print("Fizz")
} else if (n % 5 == 0){
print("Buzz")
}else {
print(n)
}
}
// End code
return "\(n)"
}
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey Ricky,
Yes, your code will work in Xcode as the logic and syntax is correct.
However, it is not what the instructions for the challenge ask for. Challenges are very specific and instructions need to be followed exactly or the task will fail, even though it works elsewhere. This challenge is even more specific and picky than the others, so you just need to take your code and refactor it to follow the instructions for the task and it will pass.
Something to keep in mind for future challenges... just because it works on your machine does not mean it will work here. Even something as small as a missing period in a string or a spelling error will cause the Challenge to fail.
Keep Coding! :)