Java 8 Programs Asked In Interview For Experienced Professionals | Java 8 Coding Interview Questions Asked In The Interview.
Q1) // Given Two Strings. Find Out the Two Strings are Anagrams or not. // Anagram means a String which has same characters present with the another // String, // Only the sequence of the Characters are different. package J ava C oncept O f D ay ; import java . util . stream . Collectors ; import java . util . stream . Stream ; public class AnagramStrings { // Given Two Strings. Find Out the Two Strings are Anagrams or not. // Anagram means a String which has same characters present with the another // String, // Only the sequence of the Characters are different. public static void main ( String [] args ) { String str1 = "Listen" ; String str2 = "Silent" ; str1 = Stream . of ( str1 . split ( "" )). map ( String :: toLowerCase ). sorted (). collect ( Collectors . joining ());...
Comments
Post a Comment