Sunday, April 24, 2022

solution:evenlySpaced

 Given three ints, a b c, one of them is small, one is medium and one is large. Return true if the three values are evenly spaced, so the difference between small and medium is the same as the difference between medium and large.

 

 

public boolean evenlySpaced(int a, int b, int c) {
  return (a - b == b - c) || (a - c == c - b) || (a - b == c - a);
}
 

No comments:

sony xperia 10 VI did not like the case

After iphone 16 I wanted to test an android and looks like sony xperia 10 VI is nice, which is 6.1 inches, but it was narrow and longer than...