일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 쿠킹덤
- 이클립스
- Java
- 쿠키런킹덤크리스마스
- programmers
- 쿠키런킹덤
- oracle
- 쿠키런킹덤공략
- SQL
- 자바
- JavaScript
- dart
- edwith
- Unity
- 쿠킹덤공략
- 노마드코더
- 자바스크립트
- 홀리데이익스프레스
- 프로그래머스
- 크리스마스
- 개발자
- 유니티
- 오블완
- 티스토리챌린지
- MySQL
- HTML
- Spring
- 웹개발
- 딥러닝
- Eclipse
- Today
- Total
목록LEETCODE (4)
Dev study and notes
3. 중복되지 않는 가장 긴 부분 문자열 찾기3. Longest Substring Without Repeating Characters영문 버전/ENGLISH VerDifficultyTopicsHintsURLEasyHash_TableStringSliding_Window1https://leetcode.com/problems/longest-substring-without-repeating-characters/description/ Table of Contents설명예제Solutions설명문자열 s가 주어졌을 때, 중복된 문자가 없는 가장 긴 부분 문자열의 길이를 구하세요. 예제Example 1:Input: s = "abcabcbb"Output: 3Explanation: The answer is "abc",..
2. 두 수 더하기2. Add Two NumbersDifficultyTopicsHintsURLMediumLinked_List Math Recursion0https://leetcode.com/problems/add-two-numbers/description/Table of Contents설명예제Solutions설명두 개의 비어 있지 않은 연결 리스트가 주어지며, 이는 두 개의 음이 아닌 정수를 나타냅니다.숫자는 역순으로 저장되어 있으며, 각 노드는 한 자리 숫자를 포함하고 있습니다.두 숫자를 더한 결과를 연결 리스트로 반환하세요.두 숫자는 숫자 0 자체를 제외하고는 선행 0이 포함되지 않는다고 가정할 수 있습니다.예제예제 1:입력: l1 = [2,4,3], l2 = [5,6,4]출력: [7,0,8]..
1. 두 수의 합1. Two SumDifficultyTopicsHintsURLEasyArray``Hash Table3https://leetcode.com/problems/two-sum/description/목차설명예시제약 조건설명정수 배열 nums와 정수 target이 주어졌을 때, 합이 target이 되는 두 숫자의 인덱스를 반환하세요.각 입력에는 정확히 한 가지 솔루션이 있다고 가정할 수 있으며, 같은 요소를 두 번 사용할 수는 없습니다.답변은 어떤 순서로 반환해도 됩니다.예시예시 1:Input: nums = [2,7,11,15], target = 9Output: [0,1]Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].예시 2:Input..
1. Two SumDifficultyTopicsHintsURLEasyArray``Hash Table3https://leetcode.com/problems/two-sum/description/Table of ContentsDescriptionExamplesSolutionsDescriptionGiven an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.You may assume that each input would have exactly one solution, and you may not use the same element twice.You can ..