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 trialKeifer Dalton
3,488 PointsFizzBuzz in Swift
This is exactly what the instructor said to code in the solution video, and exactly what someone has told to write in another question, yet I am still getting errors?
func fizzBuzz(n: Int) -> String {
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")
}
}
return "\(n)"
}
2 Answers
Steve Hunter
57,712 PointsHi Keifer,
Have a read at the challenge - you've done two things wrongly. Read, particularly, Step 3 regarding changing print
to return
: Step 3: Change all your print statements to return statements. For example: print("FizzBuzz") becomes return "FizzBuzz".. And then also the last sentence at the bottom about not using a for
loop: The challenge also does not need you to loop over a range of values (using for or while). I'll take care of that.
Tweaking those points, and your code works fine - so you've done the hard bit!
Make sense?
Steve.
Keifer Dalton
3,488 PointsI appreciate the help, buddy. Thanks
Steve Hunter
57,712 PointsDid you get it sorted?