https://leetcode.com/problems/subarray-product-less-than-k/ Subarray Product Less Than K - 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 nums의 부분 배열이 k보다 작은 경우의 수를 구하는 문제. ==풀이== 슬라이딩 윈도우 알고리즘을 이용한다. start와 end 두 가지 포인터를 선언하고 부분 배열의 곱이 k를 안 넘었다면 end를 증가시키고 k를 넘었다면 k이하가 될 때까지 star..