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

adi veliman
adi veliman
5,343 Points

Hello! I think the compiler has a problem resolving my FizzBuzz exercise..

Here is the code i wrote in it: func fizzBuzz(n: Int) -> String { // Enter your code between the two comment markers if (n % 3 == 0 && n % 5 == 0) {return "FizzBuzz!"} else if (n % 3 == 0 ) { return "Fizz!"} else if (n % 5 == 0 ) { return "Buzz!" } else { // End code return "(n)" } }

fizzBuzz.swift
func fizzBuzz(n: Int) -> String {
  // Enter your code between the two comment markers

  // End code
  return "\(n)"
}
Reed Carson
Reed Carson
8,306 Points

can you try pasting in your code as it is, it comes out garbled right now and its hard to tell what you actually have written.

use the markdown syntax to paste it as swift code. use the markdown cheatsheet link to see how

2 Answers

Reed Carson
Reed Carson
8,306 Points

Oh. you added an exclamation mark after fizzbuzz. thats not the string its looking for, thats why it wont work for you. in coding you have to be VERY precise. a stray bracket or letter can destroy all your code and it can be hard to find

adi veliman
adi veliman
5,343 Points

I actually figured it out! Btw thanks a lot!