What is the shortest way, by character count, to find prime factors in any number?
Example Input: 1806046
Example Output: 2x11x11x17x439
|
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
|
|||||||||||||||
|
|
Obligatory J answer (2 characters):
|
||||
|
ANSI C, 79 characters
|
|||||||||||||
|
|
Mathematica (15 chars including brackets):
Example:
|
|||||||||||
|
|
Python: 77 chars with input and output
|
||||
|
|
|
Haskell, 56 chars:
Example:
|
||||
|
|
|
Python (228 chars without I/O, 340 with):
Can be compressed to 120 chars:
Note: That's a tab character before the |
|||||||||||
|
|
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. |
||||
|
|
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
|
||||
|
Erlang, the core is 122 chars and 152 for the whole module:
To call from console:
|
||||
|
|
|
A Mathematica answer that actually produces the specified output:
55 characters. Assumes |
||||
|
|
|
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
|
|||||||||||
|
|
11 characters in APL Excluding function header and newlines
|
|||||
|
|
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.) |
|||||||||||||
|
|
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. |
||||
|
|
|
Perl, 223 characters
|
|||||
|
|
|
VB6/VBA - 190 chars
|
|||||
|
|
Perl, 70 char
|
||||
|
|
|
Euphoria: 106 characters
|
||||
|
|
|
Ruby
|
||||
|
|
|
The Go programming language, 100 characters:
My program, with the correct indentation:
|
||||
|
|
|
Derived from my TI-BASIC code for prime factorization. Since I'm talking about TI-Basic... 77 Characters in TI-Basic
|
||||
|
|
|
C# and LINQ, 241 Characters:
Compressed:
|
|||||||
|
|
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:
|
||||
|
|
|
In a similar vein as Paxinum (Mathematica answer), here's one in bash:
7 characters the excluding number. |
|||||||
|
|
Python recursive solution 99 characters (including spaces) 87 characters (without spaces)
Update: A completely recursive version
Both versions are prone to stack overflows for all but the smallest of inputs. |
||||
|
|
|
VB6/VBA - 147 chars I'm not allowed to leave comments , but it is possible to shorten the previous answer somewhat by not having
This can be tested by :
|
||||
|
|
|
In PARLANSE, this would do the trick (252 chars):
I'm sure there's a much smaller APL program to do this. |
||||
|
|