본문 바로가기

전체 글64

Reverse Words in a String [Java / LeetCode 151] URL : https://leetcode.com/problems/reverse-words-in-a-string/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. 25.
Container With Most Water [Java / LeetCode 11] 풀이 URL : https://leetcode.com/problems/container-with-most-water/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 11번 문제를 해결해보는 시간을 가지도록 하겠습니다. 긴 말 필요 없이, 문제부터 먼저 확인해 보도록 하.. 2024. 1. 24.
유효한 괄호 판별하기 [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.
이진트리의 직경을 구해보자! [Java / LeetCode 543] URL : https://leetcode.com/problems/diameter-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 오늘은, 이진트리의 직경을 구하는 방법을 공부해 보도록 하겠습니다. 이진트리의 직경을 구하는 알고리즘을 공부하기에 앞서서, 이진트리의 직경이라는 것이 과연 무엇인지 알아볼까요? 이진 .. 2024. 1. 22.