neerajnanvani / PracticeGitAndJs

Its an practice repo to create pull request and use more github features
0 stars 10 forks source link

solved finding leaders in array #59

Closed saqib-vm1 closed 1 year ago

saqib-vm1 commented 1 year ago

solution for leaders in an array close #58

saqib-vm1 commented 1 year ago

My approach for Q2. Find leaders in an array

We can use filter method of 'Array' to get an array of leaders.. To get leaders in array returned by the filter method.. we need to return true for leader element from inside the callback of filter method..

// To check if the element is leader or not.. // we need to compare element with all other elements on the right side of it..