-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathValidNumber.java
39 lines (39 loc) · 1.22 KB
/
ValidNumber.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
public class Solution {
public boolean isNumber(String s) {
// Start typing your Java solution below
// DO NOT write main() function
int len = s.length();
int i = 0, e = len - 1;
while (i <= e && Character.isWhitespace(s.charAt(i))) i++;
if (i > len - 1) return false;
while (e >= i && Character.isWhitespace(s.charAt(e))) e--;
// skip leading +/-
if (s.charAt(i) == '+' || s.charAt(i) == '-') i++;
boolean num = false; // is a digit
boolean dot = false; // is a '.'
boolean exp = false; // is a 'e'
while (i <= e) {
char c = s.charAt(i);
if (Character.isDigit(c)) {
num = true;
}
else if (c == '.') {
if(exp || dot) return false;
dot = true;
}
else if (c == 'e') {
if(exp || num == false) return false;
exp = true;
num = false;
}
else if (c == '+' || c == '-') {
if (s.charAt(i - 1) != 'e') return false;
}
else {
return false;
}
i++;
}
return num;
}
}