Description:
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
삼항 연산자로 구현
'Computer science > 알고리즘' 카테고리의 다른 글
[자바스크립트로 구현한 알고리즘] IQ Test (0) | 2016.09.21 |
---|---|
[자바스크립트로 구현한 알고리즘] Exes and Ohs (0) | 2016.09.21 |
[자바스크립트로 구현한 알고리즘] Isograms (0) | 2016.09.20 |
[자바스크립트로 구현한 알고리즘] Credit Card Mask (0) | 2016.09.20 |
[자바스크립트로 구현한 알고리즘] Descending Order (0) | 2016.09.20 |
이 포스팅은 쿠팡파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.