Tag: Scanner
-
How to check a string can be eligible to form a palindrome
This is the first solution to check whether a string can be formed as a palindrome. This approach uses the core logic to check the criteria for the palindrome.
-
How to find nTh number of Fibonacci series
This is the second solution to find the nTh number of the Fibonacci series using recursion approach.
-
How to find nTh number of Fibonacci series
This is the first solution to find the nTh number of the Fibonacci series.
-
How to find Nth largest number in an array
This is the first solution to find the Nth largest number from an array of given numbers. This program uses the sort method of the Arrays class.
