688 reputation
21736
bio website aerende.com
location
age
visits member for 3 years, 10 months
seen 15 mins ago
stats profile views 149

1d
revised Ruby - How do I sort one array with another array using sort_by?
edited title
May
18
comment Ruby - How do I sort one array with another array using sort_by?
Doing a brute force cycling over both arrays would give an O(n**2) execution time. Is sort_by faster or is your approach faster?
May
18
comment Ruby - How do I sort one array with another array using sort_by?
I'm running rails c on a Mac Pro and I still get the same answer. I just cut and pasted your answer into the rails console. Strange because your answer is similar the other answers that work.
May
18
comment Ruby - How do I sort one array with another array using sort_by?
Can you tell me what is the expected runtime of your algorithm vs using sort_by?
May
18
comment Ruby - How do I sort one array with another array using sort_by?
On the other hand flipping ext and base works, as in - filenames.sort_by{|f| f.split(".").map{|base, ext| [extensions.index(base), ext] }}. Not completely sure why.
May
18
comment Ruby - How do I sort one array with another array using sort_by?
This is a cool answer, but it doesn't use sort_by. Can the answer to be modified to use sort_by?
May
18
comment Ruby - How do I sort one array with another array using sort_by?
1 - This result has the reverse sort of the filenames - ["z.html", "a.html", "z.txt", "a.txt", "z.pdf", "a.pdf", "z.rf", "a.rf"]. 2 - I would like the answer to use sort_by.
May
18
comment Ruby - How do I sort one array with another array using sort_by?
This looks like it sorts on the filename first and then the extension giving the result - ["a.html", "a.pdf", "a.rf", "a.txt", "z.html", "z.pdf", "z.rf", "z.txt"] - which isn't what I want.
May
18
comment Ruby - How do I sort one array with another array using sort_by?
This works. Nice.
May
18
comment Ruby - How do I sort one array with another array using sort_by?
I tried this and I got it sorting on the filename first and then the extension - ["a.html", "a.pdf", "a.rf", "a.txt", "z.html", "z.pdf", "z.rf", "z.txt"] which isn't the result I want.
May
17
comment ruby how to find the source code to sort_by?
Very cool. Scrolling down I see the source code. Thanks!
May
17
accepted ruby how to find the source code to sort_by?
May
17
comment Ruby - How do I sort one array with another array using sort_by?
I added Edit 1 to show what the result should look like. I'm not asking to sort the filenames on their extensions alphabetically. I want to sort the filenames in the order of the extensions array.
May
17
revised Ruby - How do I sort one array with another array using sort_by?
added 122 characters in body
May
17
comment ruby how to find the source code to sort_by?
I see the -click to toggle source- magnifying glass, but when I click on it nothing happens.
May
17
asked Ruby - How do I sort one array with another array using sort_by?
May
17
asked ruby how to find the source code to sort_by?
Apr
27
accepted Cocos2d - Is is possible to turn off collision for a Box2d b2Body with a b2FixtureDef?
Apr
27
asked Cocos2d - Is is possible to turn off collision for a Box2d b2Body with a b2FixtureDef?
Apr
22
revised cocos2d - CCSprite not aligned with b2Body
edited body