Measure elapsed time in Swift
Here’s a Swift function I wrote to measure Project Euler problems in Swift As of Swift 3, there is now a version of Grand Central Dispatch that is “swiftified”. So the correct answer is probably to use the DispatchTime API. My function would look something like: // Swift 3 func evaluateProblem(problemNumber: Int, problemBlock: () -> … Read more