Armstrong Number With Example TienAnhvn March 31, 2020 If the sum of the cubes of the digit is equal to the number then the number is called as Armstrong number . Armstrong number is also know... Read more No comments:
How to remove all the white-spaces in the String TienAnhvn March 15, 2020 What if we need to remove all the spaces exist in the string . The process of removing all the white spaces in the string is called squee... Read more No comments:
How to Count number of words in the String TienAnhvn March 15, 2020 To find the number of words in the given String in java is easy . Here we are using arrays and string class to achieve our goal . For ... Read more No comments:
Find out if String has all Unique Characters TienAnhvn March 15, 2020 In the technical interviews ,you may come across this question many times ,determine whether a string has all unique characters or not . ... Read more No comments:
How to find intersection of two arrays in java TienAnhvn March 15, 2020 Write a java program to find common elements between the two given arrays . Suppose given two arrays array1= {1,4,7, 9, 2} arrray2 = {1,7,... Read more No comments:
How to find the first non repeated character in the String TienAnhvn March 15, 2020 This is the starting question for the product companies, so make sure you go through it. Write a java program to find the first non repeate... Read more No comments:
How to reverse a String in java TienAnhvn March 15, 2020 Write a java program to reverse the String . There are to reverse a String in java . You should know at least how to reverse a String witho... Read more No comments: