[자바스크립트로 구현한 알고리즘] Find the next perfect square!

남양주개발자

·

2016. 9. 21. 12:43

728x90
반응형


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




삼항 연산자로 구현



728x90
반응형
그리드형

이 포스팅은 쿠팡파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.

💖 저자에게 암호화폐로 후원하기 💖

아이콘을 클릭하면 지갑 주소가자동으로 복사됩니다