This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SubarrayProductLessThanK { | |
public int find(int [] arrA, int k){ | |
int result=0; | |
int arrSize = arrA.length; | |
//start point | |
for (int startPoint = 0; startPoint <arrSize ; startPoint++) { | |
//group sizes | |
for (int grps = startPoint; grps <=arrSize ; grps++) { | |
//if start point = 1 then | |
//grp size = 1 , take 10 | |
//grp size = 2, take 10 4 | |
//grp size = 3, take 10 4 2 ans so on | |
int product=1; | |
int noElements=0; | |
String tempSubArrrays =""; | |
for (int j = startPoint ; j < grps ; j++) { | |
tempSubArrrays += arrA[j] + " "; | |
product *= arrA[j]; | |
noElements++; | |
} | |
if(product<k && noElements>0){ | |
System.out.print(tempSubArrrays); | |
result++; | |
System.out.println(); | |
} | |
} | |
} | |
return result; | |
} | |
public static void main(String[] args) { | |
SubarrayProductLessThanK s = new SubarrayProductLessThanK(); | |
int [] nums = {10,4,2,6}; | |
int k = 100; | |
System.out.println("Sub arrays has sum less than k=100 are: " + s.find(nums, k)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment