Skip to content

Instantly share code, notes, and snippets.

@seemcat
Last active January 8, 2019 08:21
Show Gist options
  • Save seemcat/2fa8587cdd619cc2d13514084e52cc9b to your computer and use it in GitHub Desktop.
Save seemcat/2fa8587cdd619cc2d13514084e52cc9b to your computer and use it in GitHub Desktop.
c0d3 solved in Go
package main
func solution9(num1, num2 int) func(num3 int) int {
return func(num3 int) int {
return num1 + num2 + num3
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment