문제 https://leetcode.com/problems/majority-element/ Majority Element - 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 풀이코드 package SITE03_leetcode.easy; import SITE03_leetcode.medium.M004_leetCode4_median_of_two_sorted_arrays; import java.util.*; import java.util.stream.Collectors;..
문제 https://leetcode.com/problems/remove-nth-node-from-end-of-list/ Remove Nth Node From End of List - 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 풀이코드 package SITE03_leetcode.medium; import SITE03_leetcode.common.ListNode; /** * https://leetcode.com/problems/4sum/submissions/ *..
문제 https://leetcode.com/problems/4sum/ 4Sum - 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 풀이코드 package SITE03_leetcode.medium; import java.util.*; /** * https://leetcode.com/problems/4sum/submissions/ */ public class M012_leetCode18_4Sum { public static void main(String[] args)..
문제 https://leetcode.com/problems/letter-combinations-of-a-phone-number/ Letter Combinations of a Phone Number - 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 풀이코드 (DFS) package SITE03_leetcode.medium; import java.util.*; /** * https://leetcode.com/problems/letter-combinations-of-..
문제 https://leetcode.com/problems/3sum-closest/ 3Sum Closest - 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 풀이코드 package SITE03_leetcode.medium; import java.util.*; /** * https://leetcode.com/problems/integer-to-roman/ */ public class M010_leetCode16_3Sum_Closet_풀이 { public stati..
문제 https://leetcode.com/problems/3sum/ 3Sum - 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 문제풀이 (DFS 사용한 코드 실패: 시간초과) package SITE03_leetcode.medium; import java.util.*; /** * https://leetcode.com/problems/3Sum/ */ public class M009_leetCode15_3Sum_시간초과 { static List list = new ..
문제 https://leetcode.com/problems/integer-to-roman/ Integer to Roman - 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 풀이코드 package SITE03_leetcode.medium; import java.util.*; import java.util.stream.Collectors; /** * https://leetcode.com/problems/integer-to-roman/ */ public class M..
문제 https://leetcode.com/problems/container-with-most-water/ Container With Most Water - 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 풀이코드 package SITE03_leetcode.medium; import java.util.Arrays; /** * https://leetcode.com/problems/zigzag-conversion/ */ public class M007_leetCode..
문제 https://leetcode.com/problems/reverse-integer Reverse Integer - 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 풀이코드 class Solution { public int reverse(int x) { long result = 0; // int) 1534236469 잘못된 결과 while (x != 0) { // X 가 0이라면 마지막까지 계산 종료 int target = x; target = x % 10; ..
문제 https://leetcode.com/problems/zigzag-conversion ZigZag Conversion - 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 풀이코드 package SITE03_leetcode.medium; import java.util.Arrays; /** * https://leetcode.com/problems/zigzag-conversion/ */ public class M006_leetCode6_ZigZagConversio..
문제 https://leetcode.com/problems/median-of-two-sorted-arrays Median of Two Sorted Arrays - 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 풀이코드 package SITE03_leetcode.medium; import java.util.Arrays; /** * https://leetcode.com/problems/median-of-two-sorted-arrays */ public class M..
문제 https://leetcode.com/problems/longest-palindromic-substring Longest Palindromic Substring - 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 풀이코드 package SITE03_leetcode.medium; /** * https://leetcode.com/problems/longest-palindromic-substring/ */ public class M003_leetCode5_Long..