Created
May 24, 2020 16:32
-
-
Save alfianmalik/0e8897931899bb04d2c184377de30241 to your computer and use it in GitHub Desktop.
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
package main | |
func SumProductDiff(i, j int) (int, int, int) { | |
return i+j, i*j, i-j | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment