Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 447 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 447 Bytes

Numbers in strings

7 kyu link to kata
my solution

In this Kata, you will be given a string that has lowercase letters and numbers. Your task is to compare the number groupings and return the largest number. Numbers will not have leading zeros.

For example, solve("gh12cdy695m1") = 695, because this is the largest of all number groupings.

Good luck!