vote up 0 vote down star

I'm trying to make an easy script in Python which takes a number and saves in a variable, sorting the digits in ascending and descending orders and saving both in separate variables. Implementing Kaprekar's constant.

It's probably a pretty noobish question. But I'm new to this and I couldn't find anything on Google that could help me. A site I found tried to explain a way using lists, but it didn't work out very well.

flag

2  
If this is a homework question (which it sounds like), you should be honest enough to tag it as such, and also explain what you've tried so far and where you failed. – balpha Aug 19 at 16:41
Its not a homework project. I found an article on Wikipedia: en.wikipedia.org/wiki/6174 and I want to make a little script that calculates it automatically. I wish I had a school where I could learn Python or atleast programming more efficient, but Im stuck with Google (not that Im complaining) and whatever I can manage to squeeze out of the Python documentation. If this was a homework project, I would tag it as one. But it isnt. – DreamCodeR Aug 19 at 16:55
1  
@DreamCodeR: Fair enough, please don't take offense. – balpha Aug 19 at 16:58
1  
Citing the wikipedia article would have helped to get the idea that we were sorting digits of numbers, not sorting lists of numbers. – hughdbrown Aug 19 at 17:00
@balpha: No offense taken :) @hughdbrown: It really didnt occur to me since in my head it was always about digits and not lists, should have made it more clear. Thanks for your help anyway :) – DreamCodeR Aug 19 at 17:05

5 Answers

vote up 10 vote down check

Sort the digits in ascending and descending orders:

ascending = "".join(sorted(str(number)))

descending = "".join(sorted(str(number), reverse=True))

Like this:

>>> number = 5896
>>> ascending = "".join(sorted(str(number)))
>>>
>>> descending = "".join(sorted(str(number), reverse=True))
>>> ascending
'5689'
>>> descending
'9865'

And if you need them to be numbers again (not just strings), call int() on them:

>>> int(ascending)
5689
>>> int(descending)
9865
link|flag
5  
ah, got to love python. – Mike Cooper Aug 19 at 17:17
vote up 2 vote down
>>> x = [4,5,81,5,28958,28] # first list
>>> print sorted(x)
[4, 5, 5, 28, 81, 28958]
>>> x
[4, 5, 81, 5, 28958, 28]
>>> x.sort() # sort the list in place
>>> x
[4, 5, 5, 28, 81, 28958]
>>> x.append(1) # add to the list
>>> x
[4, 5, 5, 28, 81, 28958, 1]
>>> sorted(x)
[1, 4, 5, 5, 28, 81, 28958]

As many others have pointed out, you can sort a number forwards like:

>>> int(''.join(sorted(str(2314))))
1234

That's pretty much the most standard way.

Reverse a number? Doesn't work well in a number with trailing zeros.

>>> y = int(''.join(sorted(str(2314))))
>>> y
1234
>>> int(str(y)[::-1])
4321

The [::-1] notation indicates that the iterable is to be traversed in reverse order.

link|flag
+1. For descending order, use the 'reverse' keyword argument: x.sort(reversed=True), sorted(..., reverse=True) – Ferdinand Beyer Aug 19 at 16:44
The only problem is that I have one big number, f.ex.: 5896, which must be sorted as 5689 and 9865. Its just one large number. – DreamCodeR Aug 19 at 16:48
You want to sort the digits of the numbers? – hughdbrown Aug 19 at 16:49
Yes, sorry for not being too spesific =/ – DreamCodeR Aug 19 at 16:52
1  
ascending = "".join(sorted(str(number))); descending = "".join(sorted(str(number), reverse=True)); – hughdbrown Aug 19 at 16:54
vote up 2 vote down

As Mark Rushakoff already mentioned (but didn't solve) in his answer, str(n) doesn't handle numeric n with leading zeros, which you need for Kaprekar's operation. hughdbrown's answer similarly doesn't work with leading zeros.

One way to make sure you have a four-character string is to use the zfill string method. For example:

>>> n = 2
>>> str(n)
'2'
>>> str(n).zfill(4)
'0002'

You should also be aware that in versions of Python prior to 3, a leading zero in a numeric literal indicated octal:

>>> str(0043)
'35'
>>> str(0378)
  File "<stdin>", line 1
    str(0378)
           ^
SyntaxError: invalid token

In Python 3, 0043 is not a valid numeric literal at all.

link|flag
vote up 1 vote down

I don't know the python syntax, but thinking the generically, I would convert the input string into a character array, they do a sort on the character array, and lastly pipe it out.

link|flag
vote up 0 vote down

Here's an answer to the title question in Perl, with a bias toward sorting 4-digit numbers for the Kaprekar algorithm. In the example, replace 'shift' with the number to sort. It sorts digits in a 4-digit number with leading 0's ($asc is sorted in ascending order, $dec is descending), and outputs a number with leading 0's:

my $num = sprintf("%04d", shift);
my $asc = sprintf("%04d", join('', sort {$a <=> $b} split('', $num)));
my $dec = sprintf("%04d", join('', sort {$b <=> $a} split('', $num)));
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.