You are viewing a single comment's thread. Return to all comments →
my solution in C# public static int camelcase(string s) {
if(s.Length ==0){ return 0; } int count =1; count+= s.Count(Char.IsUpper); return count; }
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
CamelCase
You are viewing a single comment's thread. Return to all comments →
my solution in C# public static int camelcase(string s) {