You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
354 B
354 B
Make the Deadfish swim
Write a simple parser that will parse and run Deadfish.
Deadfish has 4 commands, each 1 character long:
i
increments the value (initially 0)d
decrements the values
squares the valueo
outputs the value into the return array
Invalid characters should be ignored.
parse("iiisdoso") => [ 8, 64 ]