This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import Foundation | |
/* | |
How to define which function works faster log or sqrt | |
The best way is to caclulate their growing | |
*/ | |
//Define the growing of function logarithm | |
func logWithBase(base: Double, n: Double) -> Double { |
NewerOlder