Tag: Java SE7 Upgrade
-
How to find reverse of an integer value using the core logic
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.
-
How to find reverse of an integer value using String class
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.
-
How to find reverse of an integer value using StringBuffer class
This is the second solution to find the reverse of an integer value using the StringBuffer (mutable) class.
-
How to find the reverse of an integer value using StringBuilder class
This is the first solution to find the reverse of an integer value using the StringBuilder (mutable) class type.
-
How to find sum of digits in an alpha numeric value
This is the first solution to find the sum of digits from a given alpha numeric value by using String and Character class methods.
-
How to find sum of digits in a given float value
This is the second solution to find the sum of digits from a given float value, by using the String and Character methods.
-
How to find sum of digits in an integer value
This is the first solution to find the sum of digits from a given integer value using the core logic.
-
How to find factorial of a big integer value
This is the second solution to find the factorial of big integer value.
-
How to find factorial of an integer value
This is the first solution to find the factorial of an integer value.
-
How to find length of alpha numeric value or string
This is the first solution to find the length of a given alpha numeric or string value. This approach uses direct string class length method.
