We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
publicstaticintbirthday(List<Integer>s,intd,intm){// Write your code hereintcount=0;Queue<Integer>subarray=newLinkedList<>();for(inti=0;i<s.size();i++){subarray.add(s.get(i));intcurrentSize=subarray.size();intsum=subarray.stream().mapToInt(Integer::intValue).sum();if(currentSize==m){count=sum==d?count+1:count;subarray.poll();}}returncount;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Subarray Division 1
You are viewing a single comment's thread. Return to all comments →
Java with Queue