2021-11-03 다섯번째 코딩 일지👻
class Solution { public long solution(long n) { double sqrt = Math.sqrt(n); if(sqrt%1==0) { return (long) Math.pow(sqrt+1,2); } return -1; } }
이번 문제는 Math함수만 잘 알고 있다면 쉽게 풀 수 있는 문제로 느껴졌다 :)