본문 바로가기

전체 글64

특정 원소가 모두 포함된 최소 슬라이딩 윈도우를 찾아보자 [LeetCode 76 / Java] URL : https://leetcode.com/problems/minimum-window-substring/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 오늘은 특정 원소가 모두 포함되어 있는 최소 슬라이딩 윈도우를 찾는 방법을 알아보겠습니다! 특정 원소가 모두 포함된 최소 슬라이딩 윈도우가 무엇을 의미하는 것일까요? 잘 이해가 되지.. 2024. 1. 21.
BFS를 이용해 이진 트리의 최대 깊이를 구해보자 [Java] URL : https://leetcode.com/problems/maximum-depth-of-binary-tree/description/ LeetCode - The World's Leading Online Programming Learning Platform 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(Depth First Search), BFS(Breath First Sea.. 2024. 1. 20.
DFS를 이용해 이진 트리의 최대 깊이를 구해보자 [Java] URL : https://leetcode.com/problems/maximum-depth-of-binary-tree/description/ LeetCode - The World's Leading Online Programming Learning Platform 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(Depth First Search), BFS(Breath First Sea.. 2024. 1. 20.
2개의 Stack을 이용해 Queue를 구현해보자 (Java) URL : https://leetcode.com/problems/implement-queue-using-stacks/submissions/1150681762/ LeetCode - The World's Leading Online Programming Learning Platform 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 2개의 스택을 이용해서 Queue를 구현해 보는 시간을 갖도록 하겠습니다. 사실 Queue라는 것은 이미 자바의 컬렉션 프레임워크로 제공이 되는 것이고 내.. 2024. 1. 19.