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.
Jim Infield
450eb27f56
|
3 years ago | |
---|---|---|
src | 3 years ago | |
.gitignore | 3 years ago | |
Cargo.lock | 3 years ago | |
Cargo.toml | 3 years ago | |
README.md | 3 years ago |
README.md
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 ]