DIY: Valid Number

Solve the interview question "Valid Number" yourself in this lesson.

Problem statement

Validate if a given string can be interpreted as a decimal number or not. Here is an array of characters that can appear in a valid decimal number:

  • Numbers - 0-9

  • Exponent - "e"

  • Positive/negative sign - "+"/"-" ...