Skip to content

Instantly share code, notes, and snippets.

@torpedo87
Created March 8, 2017 04:32
Show Gist options
  • Save torpedo87/056de660a06993f70b308f650a988a1f to your computer and use it in GitHub Desktop.
Save torpedo87/056de660a06993f70b308f650a988a1f to your computer and use it in GitHub Desktop.
function main() {
var s = readLine();
var upperNum=0;
for(var i=0; i<s.length; i++){
if(s[i] === s[i].toUpperCase()){
upperNum+=1;
}
}
console.log(upperNum+1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment