Search found 9 matches

by adark
Fri Oct 06, 2023 12:25 am
Forum: Challenges Solved
Topic: Exclusive Or
Replies: 24
Views: 12297

Re: Exclusive Or

I went about this totally by hand, and boy was that a pain in the butt. Definitely need to build myself a debugger for HVM + SuperHack! Wrote this to be agnostic about the size of the operands! A slight optimization would be to swap the memory cells if M[0] < M[1], saving a handful of cycles on the ...
by adark
Fri May 19, 2017 2:42 pm
Forum: Challenges Solved
Topic: Protected Password 4
Replies: 2
Views: 590

I used the FernFlower decompiler and it worked perfectly fine - everything else I tried choked, though. De-obfuscated the various `stop` and `run` calls, but it turns out the actual math didn't need any de-obfuscation at all: the first loop creates the correct sequence in a 3x3 grid and the second m...
by adark
Sat May 06, 2017 5:51 am
Forum: Challenges Solved
Topic: HVM Cipher
Replies: 10
Views: 3229

Necrobump I suppose but I just solved it any I'm happy with my work. I manually disassembled the HVM and reduced it after some bugfixes (because counting is hard apparently) down to this Lua: local memory = {126,664,235,156,145,645,95,96,97,98,99,100,101,102,103,104,0} function C(x, y, z) local v1 =...
by adark
Mon Dec 05, 2016 5:04 pm
Forum: Challenges Solved
Topic: King Rat
Replies: 19
Views: 2977

While I enjoyed writing this, it will definitely be a challenge to do the more brutal short ones. Here's my code: 0<10>0^0<<0^82*?:1-3?0<<0<1+0>5cdp It abuses the call stack to return to the loop counter, doesn't freeze on 0 or negative inputs, and uses at most 5 slots on the stack, when swapping ou...
by adark
Fri Dec 02, 2016 9:13 pm
Forum: Challenges Solved
Topic: strlen
Replies: 29
Views: 7393

Remarkably simple. I love it!

Code: Select all

02g1+0^<0:6?09-6-gp
by adark
Thu Dec 01, 2016 4:33 am
Forum: Challenges Solved
Topic: Growing Bacteria
Replies: 24
Views: 6866

I gotta admit, this puzzle is actually a lot easier to do than anticipated. xD Here's my Lua: local current = {0, 1, 0, 0} local i = 0 while true do i = i + 1 current = {current[1] + current[2], current[1], current[2], current[3]} --[[if i == 8 then print(current[1] + current[2] + current[3] + curre...
by adark
Mon Nov 23, 2015 2:26 am
Forum: Challenges Solved
Topic: Valuation
Replies: 103
Views: 23712

Simple enough. Lua: local str = '93752xxx746x27x1754xx90x93xxxxx238x44x75xx08750912738x8461x8759383xx328x4x4935903x6x5550360535004x0xx945958961296x267x8842xxx5x6xx61x4x48482x80xxx83316843x7x4x83x9521731xxx25x51xx457x6x5x9698222x771237745034x5133592x27xx8x87xx35221x36x0x50x23x7x63x998418xx' local tes...
by adark
Mon Nov 23, 2015 1:28 am
Forum: Challenges Solved
Topic: 3280
Replies: 20
Views: 2509

I'm really enjoying these. ^.^ Lua local file = io.open("rfc3280.txt") local t = string.lower(file:read("*all")) file:close() local wrd, maxcount = "", 0 for word in t:gmatch("%a+") do if #word == 9 then local count = 0 for _ in t:gmatch(word) do count = count...
by adark
Mon Nov 23, 2015 12:37 am
Forum: Challenges Solved
Topic: Lorem Ipsum
Replies: 34
Views: 8428

Lua: local file = io.open("lorem.txt") local t = string.lower(file:read("*all")) file:close() for word in t:gmatch("%a+") do local count = 0 for _ in t:gmatch(word) do count = count + 1 if count == 2 then break end end if count == 1 then print(word) break end end