Activity for qwr
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #289182 | Initial revision | — | over 1 year ago |
Answer | — |
A: Reverse an ASCII string Standard ML, 23 bytes implode o rev o explode (more) |
— | over 1 year ago |
Edit | Post #289181 | Initial revision | — | over 1 year ago |
Answer | — |
A: Reverse an ASCII string R, 32 bytes ```r \(s)intToUtf8(rev(utf8ToInt(s))) ``` Attempt This Online! (more) |
— | over 1 year ago |
Edit | Post #289180 | Initial revision | — | over 1 year ago |
Answer | — |
A: Reverse an ASCII string R + magrittr, 31 bytes .%>%utf8ToInt%>%rev%>%intToUtf8 (more) |
— | over 1 year ago |
Edit | Post #289178 | Initial revision | — | over 1 year ago |
Answer | — |
A: Reverse an ASCII string Python, 16 bytes ```python lambda s:s[::-1] ``` Attempt This Online! (more) |
— | over 1 year ago |
Edit | Post #289157 | Initial revision | — | over 1 year ago |
Answer | — |
A: Make $2 + 2 = 5$ x86-32 assembly, 14 bytes Straightforward solution with custom calling convention: inputs in eax and ebx, output in eax. `cmp` opcode could be smaller if limited to 8-bit integers? ``` 00000000 : 0: 83 f8 02 cmp eax,0x2 3: 75 06 jne b 5: 83 fb 02... (more) |
— | over 1 year ago |