반응형
문제
문제 해결 방법
- 단순하게 연산을 해서 리턴하는 능력을 시험하는 문제입니다.
- 가로()는 자바 우선순위에 따라서 사용할 필요가 없습니다.
참고
Github Link
https://github.com/eunhanlee/LeetCode_2235_AddTwoIntegers_Solution.git
시간복잡도: O(1), 공간복잡도: O(1)
class Solution {
/**
* Returns the sum of two integers.
*
* @param num1 The first integer.
* @param num2 The second integer.
* @return The sum of num1 and num2.
*/
public int sum(int num1, int num2) {
return num1 + num2;
}
}
반응형
'old > Algorithm Solving' 카테고리의 다른 글
GFG Count the Substrings 자바 문제 풀이 (0) | 2023.08.09 |
---|---|
LeetCode 236. Lowest Common Ancestor of a Binary Tree 자바 문제 풀이 (0) | 2023.08.07 |
LeetCode 1512. Number of Good Pairs 자바 문제 풀이 (0) | 2023.08.05 |
LeetCode 1431. Kids With the Greatest Number of Candies 자바 문제 풀이 (0) | 2023.08.04 |
LeetCode 217. Contains Duplicate 자바 문제 풀이 (0) | 2023.08.04 |