14
Given a natural number n write a program or function to get a list of all the possible two factors multiplications that can be used to achieve n. To understand better what is pretended you can go to http://factornumber.com/?page=16777216 to see when n is 16777216 we get the following list:
2 × 8388608
4 × 4194304
8 × 2097152
16 × 1048576
32 × 524288
64 × 262144
128 × 131072
256 × 65536
512 × 32768
1024 × 16384
2048 × 8192
4096 × 4096
No need to pretty print things like here. The requirement is that each entry (pair of factors) is well distinguished from each other and inside each pair, the first factor is also well distinguished from the other. If you choose to return a list/array, the inside element can be a list/array with two elements, or some structure of your language that supports a pair of things like C++ std::pair.
Do not print the multiplication by 1 entry, nor repeat entries with the first factor commuted by the second, as they are pretty useless.
No winner; it will be a per language basis code golf.
2Could you possibly add a smaller test case, such as
30? – caird coinheringaahing – 2017-12-02T22:27:21.0901
@cairdcoinheringaahing You can use factornumber.com to generate more test cases.
– Jonathan Frech – 2017-12-02T22:39:09.4801I've seen this "per language" competition recently. What's the point? Most Qs don't get more than 1 or 2 As per language, and you still can select just one A as correct. – fede s. – 2017-12-02T23:54:57.970
5@fedes. It's usually because there's no point in comparing between languages (i.e. Java vs. Jelly). – totallyhuman – 2017-12-03T00:06:22.787
1@totallyhuman yeah, I know. Most of my answers are in Factor, or even Smalltalk. No chance against the golfing languages. Maybe there could be some way of ranking languages by verbosity and boilerplatery – fede s. – 2017-12-03T00:28:46.337
1
Related https://codegolf.stackexchange.com/q/141004/73398
– None – 2017-12-03T14:37:01.323