Skip to content

Instantly share code, notes, and snippets.

@thombergs
Last active November 13, 2016 16:50
Show Gist options
  • Select an option

  • Save thombergs/2230b9de66dacf1be3f448ee476b5b2c to your computer and use it in GitHub Desktop.

Select an option

Save thombergs/2230b9de66dacf1be3f448ee476b5b2c to your computer and use it in GitHub Desktop.
public class Calculator{
public int absoluteSum(int a, int b){
if(a < 0) a = -a;
if(b < 0) b = -b;
return a + b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment