Skip to content

Instantly share code, notes, and snippets.

@andizzle
Created December 7, 2017 07:02
Show Gist options
  • Save andizzle/d3602aa858e55da6eaacb8e3b6d6ed5d to your computer and use it in GitHub Desktop.
Save andizzle/d3602aa858e55da6eaacb8e3b6d6ed5d to your computer and use it in GitHub Desktop.
// Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.
// Example:
// Given a = 1 and b = 2, return 3.
package main
func getSum(a int, b int) int {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment