본문 바로가기

코딩테스트4

유효한 괄호 판별하기 [Java / LeetCode 20] URL : https://leetcode.com/problems/valid-parentheses/ 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 오늘은 유효한 괄호를 판별하는 방법에 대해 알아보겠습니다. 세계 여러 회사의 화이트보드 코딩테스트에서 단골로 질문하는, 매우 쉬우면서도 기본기를 점검할 수 있는 좋은 문제입니다. 유효한 괄호(Valid Parenth.. 2024. 1. 23.
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.
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.
한 개의 Queue를 이용해 Stack을 구현해보자 (Java) URL : https://leetcode.com/problems/implement-stack-using-queues/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 Leetcode 594. Queue를 이용해 Stack을 구현하는 문제 가끔씩 기술면접을 본 후기를 보면 스택을 이용해 큐를, 혹은 반대로 큐를 이용해 스택을 어떻게 구현할 .. 2024. 1. 19.