Max Consecutive Ones — LeetCode

Written by Stephanie Segura | May 22, 2021

Stephanie Segura
1 min readMay 22, 2021

Thank you for visiting this post! Be sure to also take a look at my other work on LinkedIn, Github, and my website.

Problem

Please click the link below to view the Problem Statement

Solution

The Math.max() function returns the largest of the zero or more numbers given as input parameters, or NaN if any parameter isn't a number and can't be converted into one.

— MDN Web Docs

I had some help solving this algorithm. Please check out Algo Byte on Youtube. She did an amazing job explaining how to tackle this!

Conclusion

Thank you so much for stopping by! Stay tuned for more Algorithm Content!

Please checkout my online portfolio and feel free to connect with me on Linkedin!

Sources:

https://leetcode.com/problems/max-consecutive-ones/,

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/max,

https://www.youtube.com/watch?v=auZoRYkbWbo

--

--