프로그래머스 Lv1. 정수 제곱근 판별
문제
접근
- 자료형과 루트를 이용하자
코드
📌 python
제출한 코드
def solution(n):
return ((n**0.5)+1)**2 if int(n**0.5)**2 == n else -1
📌 js
자료형을 이용
function solution(n) {
if(Math.pow(parseInt(Math.sqrt(n)),2) == n )
return Math.pow(Math.sqrt(n)+1, 2);
else return -1;
}
소수점 (.) 을 이용
function solution(n) {
if(String(Math.sqrt(n)).indexOf(".") !== -1) return -1
else return Math.pow(Math.sqrt(n)+1, 2)
}
Author And Source
이 문제에 관하여(프로그래머스 Lv1. 정수 제곱근 판별), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ryong9rrr/프로그래머스-Lv1.-정수-제곱근-판별
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
- 자료형과 루트를 이용하자
코드
📌 python
제출한 코드
def solution(n):
return ((n**0.5)+1)**2 if int(n**0.5)**2 == n else -1
📌 js
자료형을 이용
function solution(n) {
if(Math.pow(parseInt(Math.sqrt(n)),2) == n )
return Math.pow(Math.sqrt(n)+1, 2);
else return -1;
}
소수점 (.) 을 이용
function solution(n) {
if(String(Math.sqrt(n)).indexOf(".") !== -1) return -1
else return Math.pow(Math.sqrt(n)+1, 2)
}
Author And Source
이 문제에 관하여(프로그래머스 Lv1. 정수 제곱근 판별), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ryong9rrr/프로그래머스-Lv1.-정수-제곱근-판별
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
def solution(n):
return ((n**0.5)+1)**2 if int(n**0.5)**2 == n else -1
function solution(n) {
if(Math.pow(parseInt(Math.sqrt(n)),2) == n )
return Math.pow(Math.sqrt(n)+1, 2);
else return -1;
}
function solution(n) {
if(String(Math.sqrt(n)).indexOf(".") !== -1) return -1
else return Math.pow(Math.sqrt(n)+1, 2)
}
Author And Source
이 문제에 관하여(프로그래머스 Lv1. 정수 제곱근 판별), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ryong9rrr/프로그래머스-Lv1.-정수-제곱근-판별저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)