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.
I dont believe this is the best solution (for the 3rd request) but can be applied
publicstaticvoidmain(String[]args){/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */Scannersc=newScanner(System.in);Stringa=sc.nextLine();Stringb=sc.nextLine();//Print lengthSystem.out.println(a.length()+b.length());//Lexicographically largerSystem.out.println((a.compareTo(b)>0)?"Yes":"No");//Capitalize first character and printStringaNew=a.substring(0,1).toUpperCase();StringbNew=b.substring(0,1).toUpperCase();if(a.length()>1)aNew+=a.substring(1);if(b.length()>1)bNew+=b.substring(1);System.out.println(aNew+" "+bNew);}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Strings Introduction
You are viewing a single comment's thread. Return to all comments →
I dont believe this is the best solution (for the 3rd request) but can be applied