42. Trapping Rain Water
https://leetcode.com/problems/trapping-rain-water/ Trapping Rain Water - LeetCode 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 난이도 : hard 문제 높이를 입력받아 비 온 후 얼마나 많은 물이 샇일 수 있는지 계산 하라. 빗물이 고여있는 파란색 부분의 총합을 계산하는 문제이다. 문제의 제약사항은 아래와 같다. n == height.length 1 left 로 가면서 모든 면적을 인접한 가장큰 높이로 채운다. ..
Developer/LEETCODE
2021. 9. 4. 11:31