TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

Rearrange the Lines

1/10: This code should add a clamped() method to Int that makes sure its value is between a minimum and maximum.

If you clamp the number 5 between 3 and 8, you'll get back 5.

}
		if (self > max) {
		} else if (self < min) {
	func clamped(min: Int, max: Int) -> Int {
extension Int {
			return min
		}
	}
		return self
			return max

Click here to start again

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code
 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.