• + 0 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;
    }