just for fun: oneline code for 4 language permutation

H

Haoqi Haoqi

hello,happy weekday!
in ruby1.9:
irb:>
%w{ruby c java php}.permutation.to_a

and my code is(all ruby):
irb:>
(1..1000).inject([]){|p,_|p<<%w{ruby c java php}.sort_by{rand}}.uniq

how about you?
 
P

Paul Smith

hello,happy weekday!
in ruby1.9:
irb:>
%w{ruby c java php}.permutation.to_a

and my code is(all ruby):
irb:>
(1..1000).inject([]){|p,_|p<<%w{ruby c java php}.sort_by{rand}}.uniq

shuffle! is shorter than .sort_by{rand} by 5 characters.

I hate that your method is nondeterministic, but I've got it spinning
in a while loop and having broken it yet...
 
P

Paul Smith

hello,happy weekday!
in ruby1.9:
irb:>
%w{ruby c java php}.permutation.to_a

and my code is(all ruby):
irb:>
(1..1000).inject([]){|p,_|p<<%w{ruby c java php}.sort_by{rand}}.uniq

.shuffle! is shorter than .sort_by{rand} by 5 characters.

I hate that your method is nondeterministic, but I've got it spinning
in a while loop and having broken it yet...

And it just did.

FWIW, your method only gives the correct result with probablity 1 -
((23/24)^999) so it should fail once every 2.9 trillion runs
(3x10^18).
 
P

Paul Smith

hello,happy weekday!
in ruby1.9:
irb:>
%w{ruby c java php}.permutation.to_a

and my code is(all ruby):
irb:>
(1..1000).inject([]){|p,_|p<<%w{ruby c java php}.sort_by{rand}}.uniq

.shuffle! is shorter than .sort_by{rand} by 5 characters.

I hate that your method is nondeterministic, but I've got it spinning
in a while loop and having broken it yet...

And it just did.

FWIW, your method only gives the correct result with probablity 1 -
((23/24)^999) so it should fail once every 2.9 trillion runs
(3x10^18).

Actually 1 - ((23/24)^977) is a better lower bound. I'll shut up now.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,019
Latest member
RoxannaSta

Latest Threads

Top