Bleeding edge

[LeetCode] 2235. Add Two Integers - 자바스크립트 0613 본문

코딩테스트 공부

[LeetCode] 2235. Add Two Integers - 자바스크립트 0613

codevil 2022. 6. 13. 10:41

https://leetcode.com/problems/add-two-integers/submissions/

 

Add Two Integers - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

음.. 랜덤으로 픽해서 문제를 풀이를 하는데 너무.. 이지한 문제가 나왔다..

var sum = function (num1, num2) {
    return num1 + num2
};

문제에 주어진 두 변수를 더해서 리턴한다