Tag: java challenges
-
How to check two strings or sentences are Anagram using StringBuilder class
This is the second solution to check whether the given two strings are Anagram are not. This program uses deleteCharAt() method of StringBuilder Class.
-
How to check two sentences or strings are Anagram using String class
This is the first solution to check whether the given two strings are Anagram are not. This program uses toCharArray() method of String Class.
-
How to remove duplicate numbers in an Array of integers using HashSet
This is the second solution to remove the duplicate numbers from an Array of integers. This program uses the Set collection to removing the duplicate numbers.
