Algorithms/문제풀이
[LeetCode] Two Sum 풀이
문제 링크https://leetcode.com/problems/two-sum완전탐색시간복잡도 O(N^2)공간복잡도 O(1)class Solution { public int[] twoSum(int[] nums, int target) { for (int i = 0; i HashTable시간 복잡도 O(N)공간 복잡도 O(N)import java.util.*;class Solution { public int[] twoSum(int[] nums, int target) { HashMap map = new HashMap(); for (int i = 0; i
2024. 8. 27. 01:00