Skip to content

Commit 9e009cc

Browse files
authored
Update count-ways-to-make-array-with-product.cpp
1 parent 67f03eb commit 9e009cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/count-ways-to-make-array-with-product.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Time: O(sqrt(m) + n + qlogm + q * sqrt(m) / log(sqrt(m))), m is max(k for _, k in queries)
1+
// Time: O(sqrt(m) + n + q * (logm + sqrt(m)/log(sqrt(m)))), m is max(k for _, k in queries)
22
// Space: O(sqrt(m) + n + logm)
33

44
class Solution {

0 commit comments

Comments
 (0)