Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 28, 2021 09:43 am GMT

code everyday with me

--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.


Original Link: https://dev.to/coderduck/code-everyday-with-me-2f86

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To