-
This is the second solution to find the first and second biggest numbers from the given array of integers, using built-in sort method of Arrays class.
-
This is the first solution to find the first and second biggest numbers from the given array of integers, without using any built in methods.
-
This is the sixth solution to find the reverse of a float value using the StringBuffer (mutable) class.
-
This is the fifth solution to find the reverse of a float value using the StringBuilder (mutable) data type.
-
This is the fourth solution to find the reverse of an integer value, by using the core logic of forming the number in the reverse order.
-
This is the third solution to find the reverse of an integer value using String (immutable) class. This shows the core logic of storing the characters in reverse direction.
-
This is the second solution to find the reverse of an integer value using the StringBuffer (mutable) class.
-
This is the first solution to find the reverse of an integer value using the StringBuilder (mutable) class type.
-
This is the first solution to find the sum of digits from a given alpha numeric value by using String and Character class methods.
-
This is the second solution to find the sum of digits from a given float value, by using the String and Character methods.
