What is the shortest way, by character count, to find prime factors in any number?
Example Input: 1806046
Example Output: 2x11x11x17x439
|
6
|
What is the shortest way, by character count, to find prime factors in any number? Example Input: Example Output: |
||||||||||||||||||||
|
|
|
C#, 69 x is input number
|
|||
|
|
|
In PARLANSE, this would do the trick (252 chars):
I'm sure there's a much smaller APL program to do this. |
|||
|
|
|
|
Python (228 chars without I/O, 340 with):
Can be compressed to 120 chars:
Note: That's a tab character before the |
||||||||||
|
|
|
C#, 366 characters C# is not the most averbose language for something like this, but this is quite compact:
Edit: Edit: C#, 181 characters
Compressed:
|
|||
|
|
|
|
F#81 chars
It's terribly inefficient, but since the aim is undoubtedly to write the shortest code possible, I've neglected that matter. Readable form (using
|
|||
|
|
|
Perl, 223 characters
|
||||
|
|
|
C# and LINQ, 241 Characters:
Compressed:
|
||||
|
|
|
Mathematica (15 chars including brackets):
Example:
|
||||||||
|
|
|
Wow, you guys aren't very good at optimizing. I can do it in Perl in 63 characters, or 79 if you insist on including a #!/usr/bin/perl at the top:
(Don't look at me that way. Committed programmers are lazy programmers.) |
||||||||
|
|
|
ANSI C, 79 characters
|
||||||||||||
|
|
|
In a similar vein as Paxinum (Mathematica answer), here's one in bash:
7 characters the excluding number. |
||||||
|
|
|
Obligatory J answer (2 characters):
|
|||
|
|
Best Perl answer yet - 70 characters, and no extra modules (unless you count special features of 5.10):
Doesn't work for 1 or 0, but works fine for everything else. If you don't like using
|
||||||||||
|
|
|
While it's not my best work, here's me answer in Haskell, 83 characters.
I'm sure there's more that could be done, but for now it's good. Edit: Rearranged things to shave off a character, less efficient, but smaller. |
|||
|
|
|
|
Python: 86 chars with input and output
|
|||
|
|
|
|
VB6/VBA - 190 chars
|
|||
|
|
|
Haskell, 56 chars:
Example:
|
|||
|
|
|
|
Erlang, the core is 122 chars and 152 for the whole module:
To call from console:
|
|||
|
|
|
|
Ruby 39B (via STDIN)
|
|||
|
|
|
|
GNU bc, 47 chars, including collecting input (need the GNU extensions for
If you really want the x characters in the output, it's 64 chars:
Also, note that using bc allows this to process numbers of arbitrary length. |
|||
|
|
|
|
A Mathematica answer that actually produces the specified output:
55 characters. Assumes |
|||
|
|
|
|
Perl, 70 char
|
|||
|
|
|
|
Euphoria: 106 characters
|
|||
|
|