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 trialVansh Agarwal
Courses Plus Student 3,965 PointsMy answer is not getting accepted in this code challenge
When I type ' let isGreater: Bool = someOperation ≥ anotherOperation', it says 'Bummer! Make sure you're assigning the results of a comparison operation to isGreater and not just a Bool value'. But how else can I assign the results of the comparison? I can't put a message in string as I don't know if the comparison is true or false. Assigning a Boolean value is the only way I can think of. What do I do?!
// Enter your code below
let value = 200
let divisor = 5
let someOperation = 20 + 400 % 10 / 2 - 15
let anotherOperation = 52 * 27 % 200 / 2 + 5
// Task 1 - Enter your code below
let result = value%divisor
// Task 2 - Enter your code below
let isPerfectMultiple: Bool = result == 0
let isGreater: Bool = someOperation ≥ anotherOperation
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! Well, your logic is spot on! In mathematics we write "greater than or equal to" as ≥
. However, in Swift we write the same thing as >=
. Note that the greater than and equal are two separate characters. By the way, this is not exclusive to Swift. Every programming language I've come across writes it this way.
So, if I make this tiny correction to your code, it passes!
Hope this helps!
Vansh Agarwal
Courses Plus Student 3,965 PointsVansh Agarwal
Courses Plus Student 3,965 PointsThanks Jennifer, this really helped and I learned something new( to use >= instead of ≥)!