How would you write a method that returns the length of the longest sequence of successive numbers in an array?
For example [1,2,3,1,0,7,9,10,16]
would output
7,9,10,16 …
How would you write a method that returns the length of the longest sequence of successive numbers in an array?
For example [1,2,3,1,0,7,9,10,16]
would output
7,9,10,16 …
:: Copyright KIRUPA 2024 //--