CodingBat loneSum Solution April 05, 2017 Get link Facebook X Pinterest Email Other Apps public int loneSum(int a, int b, int c) { if(a==b&&b==c) return 0; if (a==b) return c; if(b==c) return a; if(a==c) return b; return a+b+c;} Comments
Comments
Post a Comment