Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Activity for Taeir‭

Type On... Excerpt Status Date
Comment Post #289011 Yup, I tried both of those and ran into the same issues 😉
(more)
10 months ago
Edit Post #289011 Post edited:
Removed variable
10 months ago
Edit Post #289011 Post edited:
10 months ago
Edit Post #289011 Post edited:
10 months ago
Edit Post #289011 Initial revision 10 months 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)
10 months ago