Skip to content

Instantly share code, notes, and snippets.

@RoastBeefKazenakis
Created October 2, 2019 15:57
Show Gist options
  • Save RoastBeefKazenakis/5494ed6c9c932bc4d1849a438220ee69 to your computer and use it in GitHub Desktop.
Save RoastBeefKazenakis/5494ed6c9c932bc4d1849a438220ee69 to your computer and use it in GitHub Desktop.
func sumAndProduct(sum: Int, product: Int) -> [Int] {
let number1 = Double(sum) * 0.5
let x = Double(sum) - number1
let y = number1
return [Int(x), Int(y)]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment