aboutsummaryrefslogtreecommitdiff
path: root/CamelCase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CamelCase.cpp')
-rw-r--r--CamelCase.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/CamelCase.cpp b/CamelCase.cpp
deleted file mode 100644
index bbcef3a..0000000
--- a/CamelCase.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include<bits/stdc++.h>
-
-using namespace std;
-
-int main() {
- string s;
- int count = 0;
- cin >> s;
- for(auto ch : s) {
- if(isupper(ch)) {
- count++;
- }
- }
- cout << count + 1 << '\n';
- return 0;
-}