2021-02-02(520. 檢測大寫字母)
阿新 • • 發佈:2021-02-03
技術標籤:資料結構與演算法
class Solution {
public boolean detectCapitalUse(String word) {
if(word.length()==1){
return true;
}
if(word.charAt(0)>='a'&&word.charAt(0)<='z'){
for(int i=1;i<word.length();i++){
if(!(word.charAt(i)>= 'a'&&word.charAt(i)<='z')){
return false;
}
}
return true;
}else if(word.charAt(1)>='a'&&word.charAt(1)<='z'){
for(int i=1;i<word.length();i++){
if(!(word.charAt(i)>='a'&& word.charAt(i)<='z')){
return false;
}
}
return true;
}else{
for(int i=1;i<word.length();i++){
if(word.charAt(i)>='a'&&word.charAt(i)<='z'){
return false;
}
}
return true;
}
}
}
時間擊敗100%