Post

숫자 비교하기

https://school.programmers.co.kr/learn/courses/30/lessons/120807

📔 문제 설명

정수 num1과 num2가 매개변수로 주어집니다. 두 수가 같으면 1 다르면 -1을 retrun하도록 solution 함수를 완성해주세요.

💡 입출력 예

num1num2result
23-1
11111
799-1

💻내가 작성한 코드

1
2
3
function solution(num1, num2) {
  return num1 === num2 ? 1 : -1;
}
This post is licensed under CC BY 4.0 by the author.