tech-interview-for-developer icon indicating copy to clipboard operation
tech-interview-for-developer copied to clipboard

👶🏻 신입 개발자 전공 지식 & 기술 면접 백과사전 📖

Results 21 tech-interview-for-developer issues
Sort by recently updated
recently updated
newest added

## 설명 퀵 정렬 게시글 중 bold 설정이 일부 들어가지 않았습니다. ## 링크 1. [gyoogle - 퀵 정렬 (최악의 경우)](https://gyoogle.dev/blog/algorithm/Quick%20Sort.html#최악의-경우-worst-cases-t-n-o-n-2) 2. [gyoogle - 퀵 정렬 (공간복잡도)](https://gyoogle.dev/blog/algorithm/Quick%20Sort.html#공간복잡도) ## 스크린샷 1. ---...

good first issue

들여쓰기를 일관되게 수정하였습니다.

Java Stream 설명 문서에서오굵은 글씨 효과를 넣는 곳에 작은 따옴표로 인해 적용이 되지 않아 수정해야 될 것 같습니다 ! 1. 2. #### 링크 https://gyoogle.dev/blog/computer-language/Java/Stream.html

### 링크 https://github.com/gyoogle/tech-interview-for-developer/blob/master/Computer%20Science/Data%20Structure/Binary%20Search%20Tree.md#%EC%82%AD%EC%A0%9C%EC%9D%98-3%EA%B0%80%EC%A7%80-case ### 수정해야할 내용 이진 탐색 트리 삭제 케이스 중 3번째에 밑과 같이 쓰여져 있습니다. > 3. 자식이 2개인 노드일 때 → 오른쪽 자식 노드에서 가장 작은 값...

코드 들여쓰기를 수정하였습니다

어색한 문장을 고쳤습니다.

``` int delete_max_heap() { if(heapSize == 0) // 배열이 비어있으면 리턴 return 0; int item = maxHeap[1]; // 루트 노드의 값을 저장 maxHeap[1] = maxHeap[heapSize]; // 마지막 노드 값을 루트로...