FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc58.java at master · mJackie/leetcode · GitHub
mJackie
/
leetcode
Public
Notifications
You must be signed in to change notification settings
Fork
135
Star
405
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode
/
code
/
lc58.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (22 loc) · 608 Bytes
Breadcrumbs
leetcode
/
code
/
lc58.java
Copy path
File metadata and controls
23 lines (22 loc) · 608 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package
code
;
/*
* 58. Length of Last Word
* 题意:最后一个单词的长度
* 难度:Easy
* 分类:String
* 注意:要考虑空字符,串首尾空格等情况
*/
public
class
lc58
{
public
static
void
main
(
String
[]
args
) {
System
.
out
.
println
(
lengthOfLastWord
(
"aaa"
));
}
public
static
int
lengthOfLastWord
(
String
s
) {
int
pointer
=
s
.
length
()-
1
;
while
(
pointer
>=
0
&&
s
.
charAt
(
pointer
)==
' '
)
pointer
--;
int
end
=
pointer
;
while
(
pointer
>=
0
&&
s
.
charAt
(
pointer
)!=
' '
)
pointer
--;
return
end
-
pointer
;
}
}
Back
|
FazBrowse Home
|
New Git URL