This content originally appeared on DEV Community and was authored by duccanhole
--DAY 10--
Hi, I am going to make #100DaysOfCode Challenge. Everyday I will try solve 1 problem from leetcode or hackerrank. Hope you can go with me until end.
Now let's solve problem today:
-Problem: Subarray Division
-Detail: https://www.hackerrank.com/challenges/the-birthday-bar/problem
-My solution (javascript):
function birthday(arr, d, m) {
let ans=0,s=0;
for(let i=0;i<arr.length;i++){
for(let j=i;j<(i+m);j++) s+=arr[j];
if(s==d) ans++;
s=0;
}
return ans;
}
-->If you have better solution or any question, please comment below. I will appreciate.
This content originally appeared on DEV Community and was authored by duccanhole
duccanhole | Sciencx (2021-10-28T09:43:44+00:00) code everyday with me. Retrieved from https://www.scien.cx/2021/10/28/code-everyday-with-me/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.