|
|
Browse by Tags
All Tags » Hex » Scripting games
-
I did not enter the beginners PowerShell Division, but did this 2 oneliners for Event 5: ABCs and 123s ( PS Answer: ABCs and 123s )
in the Beginner division: $r = $str.tochararray() | % {([int]$_).toString('x')}
[String]::join('',[Char[]]($r |% {[int]''0x$_''})) So you get the Following output :
PoSH> $str = ''It ...
|
|
|