top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Algorithm for finding whether a palindrome is possible by rearranging the digits of a number?

–1 vote
227 views
Algorithm for finding whether a palindrome is possible by rearranging the digits of a number?
posted Aug 23, 2018 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+1 vote

For example : input string is "xyz".
output should be
- xy z
- x yz
- x y z

+5 votes

Algorithm to print all the number possible with the digits of a given number

eg :if input is "234",combinations possible are

234,243,324,342,432,423

0 votes

Write a c program that rotate elements of an array by the value of configured number "n".
For example:
Input array[ ] = { 2, 3, 5, 6, 8, 9}
value of n = 2
Output array[] = { 5, 6, 8, 9, 2, 3}
I am looking for efficient program.

...