Search⌘ K

DIY: Valid Number

Understand how to validate if a string can be interpreted as a decimal number. Learn to handle characters like digits, signs, decimals, and exponents to solve this common coding interview problem effectively.

Problem statement

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

  • Numbers - 0-9

  • Exponent - "e"

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