mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
15 lines
252 B
C#
15 lines
252 B
C#
using System;
|
|
|
|
public class Kata
|
|
{
|
|
public static long FindNextSquare(long num)
|
|
{
|
|
double root = Math.Sqrt(num);
|
|
if (root - (int) root > double.Epsilon)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
return (long) Math.Pow(Math.Round(root) + 1, 2);
|
|
}
|
|
}
|