Skip to main content
-1
Source Link
Adám
  • 31.8k
  • 4
  • 131
  • 293

APL (dzaima/APL), 1414 13 bytes

−1 thanks to Unrelated String

Anonymous tacit prefix function.

⊖⍢(160 16⊤⎕UCS) 

Try it online!Try it online!

 flip…

⍢() while argument is represented as…

160 16⊤… two-digit hexadecimal representation of…

⎕UCS Universal Character Set code points

APL (dzaima/APL), 14 bytes

Anonymous tacit prefix function.

⊖⍢(16 16⊤⎕UCS) 

Try it online!

 flip…

⍢() while argument is represented as…

16 16⊤… two-digit hexadecimal representation of…

⎕UCS Universal Character Set code points

APL (dzaima/APL), 14 13 bytes

−1 thanks to Unrelated String

Anonymous tacit prefix function.

⊖⍢(0 16⊤⎕UCS) 

Try it online!

 flip…

⍢() while argument is represented as…

0 16⊤… two-digit hexadecimal representation of…

⎕UCS Universal Character Set code points

Source Link
Adám
  • 31.8k
  • 4
  • 131
  • 293

APL (dzaima/APL), 14 bytes

Anonymous tacit prefix function.

⊖⍢(16 16⊤⎕UCS) 

Try it online!

 flip…

⍢() while argument is represented as…

16 16⊤… two-digit hexadecimal representation of…

⎕UCS Universal Character Set code points