Activity for Taeir
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #289011 |
Yup, I tried both of those and ran into the same issues 😉 (more) |
— | over 1 year ago |
Edit | Post #289011 |
Post edited: Removed variable |
— | over 1 year ago |
Edit | Post #289011 |
Post edited: |
— | over 1 year ago |
Edit | Post #289011 |
Post edited: |
— | over 1 year ago |
Edit | Post #289011 | Initial revision | — | over 1 year ago |
Answer | — |
A: Sort letters by height Ruby, 53 51 bytes ```ruby ->i{i.chars.sortby{"tibdfghklpqyj".index(1)||-1}} ``` Try it online! Works in Ruby 2.7 and Ruby 3. Explanation `->i{...}` is a short way to define a 1-argument lambda with parameter i `.chars` will turn a string into an array of characters `.sortby` wil... (more) |
— | over 1 year ago |