🧪 Validate CamelCase Variable
❓ Problem Statement
In Java, it's a common convention to use camelCase for variable names.
Write a Java program that checks whether a given string is a valid camelCase variable name.
A valid camelCase name must:
- Start with a lowercase letter
- Not contain spaces or symbols
- Only contain letters and digits
- Cannot start with a digit
✅ Constraints
- Length of the string ≤ 100