https://www.wanted.co.kr/events/pre_ob_be_6현재 참여하고 있는 원티드 인턴십에서 요구하는 과제 LeetCode 풀이를 작성하기 위한 시리즈이다.하루 , 2~3개를 푸는것을 목표로 하며 1주일에 4일은 준수할 예정이다.내용은 ,
https://leetcode.com/problems/remove-duplicates-from-sorted-array/?envType=study-plan-v2&envId=top-interview-150nums 는 오름차순 정렬 + 중복된 요소를 가지고 있다.중
https://leetcode.com/problems/jump-game/description/?envType=study-plan-v2&envId=top-interview-150nums 는 숫자 배열 , index 는 처음 0 에 위치각 요소는 현재 위치에서 뛸
문제 링크 https://leetcode.com/problems/jump-game/description/?envType=study-plan-v2&envId=top-interview-150 문제 해석 nums 는 숫자 배열 , index 는 처음 0 에 위치 각 요소
https://leetcode.com/problems/h-index/submissions/?envType=study-plan-v2&envId=top-interview-150citations 는 숫자 배열과반수의 사람이 가지는 함수 구하기 (X)=> n번 인용된
https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/description/?envType=study-plan-v2&envId=top-interview-150초기 배열은 정렬 상태배열에서 x 번
https://leetcode.com/problems/find-peak-element/?envType=study-plan-v2&envId=top-interview-1500부터 시작하는 숫자 배열Peak element 찾아서 index 를 return배열내 ,
https://leetcode.com/problems/evaluate-reverse-polish-notation/?envType=study-plan-v2&envId=top-interview-150연산자는 + , - , \* , / 존재연산자 이거나 정수나누기는
https://leetcode.com/problems/ransom-note/description/?envType=study-plan-v2&envId=top-interview-150ransomeNote 와 magazine 은 문자열magazine 으로 ranso
https://leetcode.com/problems/min-stack/?envType=study-plan-v2&envId=top-interview-150MinStack 구현push , pop , top 같은 기본적 함수도 구현가장 작은 값 return 하는
https://leetcode.com/problems/kth-largest-element-in-an-array/?envType=study-plan-v2&envId=top-interview-150nums 는 정수형 배열k 번째 큰 요소 값을 returnk 는 1
Linked List 가 주어지면 오름차순으로 정렬하라ListNode 는 val 과 next 로 구성해당 size 에 맞게 , 절반을 나누어 재귀 실행하자!재귀 한 후 , 크기가 2 일때부터 정렬을 하자반복 후 returnreturn first.next순차적으로 정렬
Linked List 가 주어지면 오름차순으로 정렬하라ListNode 는 val 과 next 로 구성해당 size 에 맞게 , 절반을 나누어 재귀 실행하자!재귀 한 후 , 크기가 2 일때부터 정렬을 하자반복 후 returnreturn first.next순차적으로 정렬
https://leetcode.com/problems/implement-trie-prefix-tree/description/?envType=study-plan-v2&envId=top-interview-150Trie 를 구현하라insert , search , s
https://leetcode.com/problems/find-k-pairs-with-smallest-sums/?envType=study-plan-v2&envId=top-interview-150오름차순 정렬 되있는 nums1,nums2 배열배열 요소들 조합해서
Linked List 가 주어지면 오름차순으로 정렬하라ListNode 는 val 과 next 로 구성해당 size 에 맞게 , 절반을 나누어 재귀 실행하자!재귀 한 후 , 크기가 2 일때부터 정렬을 하자반복 후 returnreturn first.next순차적으로 정렬
https://leetcode.com/problems/word-search-ii/m \* n 인 board 배열string\[] 인 words 배열words 에 해당하는 문자열이 board 에 존재하는지 확인인접은 수평 과 수직 연결만 허용 ( 대각선 X )모
https://leetcode.com/problems/clone-graph/?envType=study-plan-v2&envId=top-interview-150연결된 무방향 그래프 제공Node 는 값 ( val ) 이랑 주변 인접 노드 제공하는 ( neighbo
https://leetcode.com/problems/smallest-string-with-a-given-numeric-value/description/a 는 1 , z는 26 의 숫자로 계산주어진 k 를 n 길이에 맞는 문자열로 리턴사전 순으로 나오게 만들