class Solution { public: bool isNum(char *ch) { if(*ch<='9'&&*ch>='0') return true; else return false; } bool isNumeric(char* string) { if(string==NULL) return false; if(*string=='+'||*string=='-') string++; if(*string=='