博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
65. Valid Number *HARD*
阅读量:5007 次
发布时间:2019-06-12

本文共 557 字,大约阅读时间需要 1 分钟。

Validate if a given string is numeric.

Some examples:

"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true

Note: It is intended for the problem statement to be ambiguous. You should gather all requirements up front before implementing one.

bool isNumber(string s) {    int l = s.length(), i;    bool flag=0, point[2]={
0,0}, num[2]={
0,0}; for(i=0; s[i] == ' '; i++); for(; i

测试用例:

"0e" -- false

". 1" -- false

"-1." -- true

".-4" -- false

"+.8" -- true

"6e6.5" -- false

转载于:https://www.cnblogs.com/argenbarbie/p/5270914.html

你可能感兴趣的文章
php最新变异一句话
查看>>
LeetCode-Binary Tree Level Order Traversal
查看>>
COM组件开发实践
查看>>
yii2 源码分析1从入口开始
查看>>
浅谈网站推广
查看>>
Away3D基础之摄像机
查看>>
Leetcode 128. Longest Consecutive Sequence
查看>>
程序员必须知道的几个Git代码托管平台
查看>>
导电塑料入梦来
查看>>
C# 线程手册 第五章 扩展多线程应用程序 - 什么是线程池
查看>>
笔记1126ASP.NET面试题(转)
查看>>
自签证书脚本
查看>>
考研路茫茫--单词情结 - HDU 2243(AC自动机+矩阵乘法)
查看>>
关于zepto在chrome中触发两次的解决方案
查看>>
PAT (Basic Level) Practise:1010. 一元多项式求导
查看>>
centos7 mysql数据库安装和配置
查看>>
iframe显示滚动条
查看>>
makefile中":=","=","?=","+="
查看>>
python中的map,filter,reduce,lambda (转)
查看>>
Mysql数据库常见试题
查看>>