Activity for PlaceReporter99
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #292741 |
https://oeis.org/A030513 so apparently this is testing whether the number is 1 or has exactly 4 divisors, meaning the number is the product of 2 primes. (more) |
— | about 1 month ago |
Comment | Post #289437 |
Just input the character with that ordinal and pretend it’s a single byte.
The other issues have been fixed. (more) |
— | about 1 year ago |
Edit | Post #289437 |
History hidden: Detailed history before this event is hidden because of a redaction. |
— | about 1 year ago |
Edit | Post #289437 |
Post edited: |
— | about 1 year ago |
Edit | Post #289437 | Initial revision | — | over 1 year ago |
Answer | — |
A: Reverse the bits in a Byte Python, 55 Bytes ```python lambda x:chr(int(bin(ord(x))[2:].rjust(8,"0")[::-1],2)) ``` Takes input as the actual byte, and outputs the actual byte. Try it online! (more) |
— | over 1 year ago |