We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Algorithms
- Strings
- CamelCase
- Discussions
CamelCase
CamelCase
Sort by
recency
|
1898 Discussions
|
Please Login in order to post a comment
in C#
Here is my easy solution in c++, you can have the explanation here : https://youtu.be/1PDDxGbmSj8
import java.util.*; public class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); String camalcase=sc.nextLine(); int count=0; for(int i=0;i
}
def camelcase(s):
RUST: