Kata Profile pic 7 kyu 62 7 kyu Find the next perfect square!

You might know some pretty large perfect squares. But what about the NEXT one?

Complete the findNextSquare method that finds the next integral perfect square after the one passed as a parameter. Recall that an integral perfect square is an integer n such that sqrt(n) is also an integer.

If the parameter is itself not a perfect square, than -1 should be returned. You may assume the parameter is positive.

Examples:

findNextSquare(121) --> returns 144
findNextSquare(625) --> returns 676
findNextSquare(114) --> returns -1 since 114 is not a perfect

my:

public class NumberFun {
    public static long findNextSquare(long sq) {
        long n=(long)Math.sqrt(sq);
        if (n*n==sq)
        {
            return (n+1)*(n+1);
        }else{
            return -1;
        }
    }
}

else:

public class NumberFun {
  public static long findNextSquare(long sq) {
      long root = (long) Math.sqrt(sq);
      return root * root == sq ? (root + 1) * (root + 1) : -1;
  }
}

 

 

你可能感兴趣的:(Kata Profile pic 7 kyu 62 7 kyu Find the next perfect square!)