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 Intermediate Swift Extensions and Protocols Protocol Extensions

David Aberg
David Aberg
6,951 Points

Why is my solution not accepted? This regards: Protocol extensions Challenge 1 of 1. I import Foundation and use sqrt

// Enter your code below import Foundation extension Calculator { func square(_ value: Double) -> Double { return sqrt(value) } }

protocols.swift
protocol Calculator {
  func square(_ value: Double) -> Double
}

// Enter your code below
import Foundation
extension Calculator {
    func square(_ value: Double) -> Double {
        return sqrt(value)
    }
}
Josh Gonet
Josh Gonet
5,602 Points

All of it looks spot on except for the last line.

Instead of returning "sqrt(value)", you need to return "value * value". Remember that you're squaring the value, not finding the square root of it.

Hope that helps!

1 Answer

David Aberg
David Aberg
6,951 Points

Acceptable answer. Thanks Josh!