Leetcode 2302. Count Subarrays With Score Less Than K
Problem Statement
The score of an array is defined as the product of its sum and its length.For example, the score of [1, 2, 3, 4, 5] is (1 + 2 + 3 + 4 + 5) * 5 = 75.
Given a positive integer...