Codewars Find Next Perfect Square Solution Explained - Javascript

Опубликовано: 17 Август 2021
на канале: Arslan's Tech Lab
1,825
26

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 then -1 should be returned. You may assume the parameter is non-negative.

Examples:

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


Смотрите видео Codewars Find Next Perfect Square Solution Explained - Javascript онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Arslan's Tech Lab 17 Август 2021, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 1,825 раз и оно понравилось 26 людям.