Posts by PlaceReporter99
Python, 55 Bytes 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!
Python 3, 55 bytes from math import*;print(int(sin(int(input())*pi/2)**2)) Why not do something slightly unconventional? Try it online!
