본문 바로가기

LeetCode

[LeetCode] - 2235. Add Two Integers

LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Add Two Integers" 문제입니다.

--> https://leetcode.com/problems/add-two-integers/description/

 

문제 : 

Given two integers num1 and num2, return the sum of the two integers.


Example 1:

Input : num1 = 12, num2 = 5

Output : 17

Explanation : num1 is 12, num2 is 5, and their sum is 12 + 5 = 17, so 17 is returned.

 

Example 2 :

Input : num1 = -10, num2 = 4

Output : -6 Explanation: num1 + num2 = -6, so -6 is returned.

 

Constraints : -100 <= num1, num2 <= 100


이 문제는 되게 예능 문제인 거 같은데요, 두 정수 num1과 num2가 주어졌을 때, 두 정수의 합을 반환하는 코드를 쓰면 됩니다. 상~~~~~당히 어렵죠? 제일 어려운 문제였던 것 같습니다 ㅠㅠ. 코드 보시죠 : 

class Solution {
    public int sum(int num1, int num2) {
        return num1 + num2;
    }
}

 

너무 어려운 코드라서 설명은 못해드리겠습니다.

 

문제의 난이도가 너무 어이없어서 다른 유저들의 솔루션을 찾아봤는데요, 이 분이 정말 찐 광기입니다. 재미로 보실 분들은 한 번 링크 타고 봐보십시오. 

https://leetcode.com/problems/add-two-integers/solutions/1968134/21-different-ways-to-solve-this-problem

 

'LeetCode' 카테고리의 다른 글

[LeetCode] - 412. Fizz Buzz  (0) 2024.07.22
[LeetCode] - 709. To Lower Case  (0) 2024.07.22
[LeetCode] - 977. Squares of a Sorted Array  (0) 2024.07.22
[LeetCode] - 461. Hamming Distance  (0) 2024.07.22
[LeetCode] - 58. Length of Last Word  (2) 2024.07.22