5 kyu

My smallest code interpreter (aka Brainf**k)

2,348 of 8,314ssineriz

Description:

Inspired from real-world Brainf**k, we want to create an interpreter of that language which will support the following instructions:

  • > increment the data pointer (to point to the next cell to the right).
  • < decrement the data pointer (to point to the next cell to the left).
  • + increment (increase by one, truncate overflow: 255 + 1 = 0) the byte at the data pointer.
  • - decrement (decrease by one, treat as unsigned byte: 0 - 1 = 255 ) the byte at the data pointer.
  • . output the byte at the data pointer.
  • , accept one byte of input, storing its value in the byte at the data pointer.
  • [ if the byte at the data pointer is zero, then instead of moving the instruction pointer forward to the next command, jump it forward to the command after the matching ] command.
  • ] if the byte at the data pointer is nonzero, then instead of moving the instruction pointer forward to the next command, jump it back to the command after the matching [ command.

The function will take in input...

  • the program code, a string with the sequence of machine instructions,
  • the program input, a string, possibly empty, that will be interpreted as an array of bytes using each character's ASCII code and will be consumed by the , instruction

... and will return ...

  • the output of the interpreted code (always as a string), produced by the . instruction.

Implementation-specific details for this Kata:

  • Your memory tape should be large enough - the original implementation had 30,000 cells but a few thousand should suffice for this Kata
  • Each cell should hold an unsigned byte with wrapping behavior (i.e. 255 + 1 = 0, 0 - 1 = 255), initialized to 0
  • The memory pointer should initially point to a cell in the tape with a sufficient number (e.g. a few thousand or more) of cells to its right. For convenience, you may want to have it point to the leftmost cell initially
  • You may assume that the , command will never be invoked when the input stream is exhausted
  • Error-handling, e.g. unmatched square brackets and/or memory pointer going past the leftmost cell is not required in this Kata. If you see test cases that require you to perform error-handling then please open an Issue in the Discourse for this Kata (don't forget to state which programming language you are attempting this Kata in).
Interpreters
Algorithms

Stats:

CreatedOct 18, 2013
PublishedOct 18, 2013
Warriors Trained58541
Total Skips20602
Total Code Submissions76572
Total Times Completed8314
JavaScript Completions1839
Python Completions2348
Ruby Completions307
Haskell Completions266
Clojure Completions77
Java Completions802
Crystal Completions13
PHP Completions186
C++ Completions856
TypeScript Completions271
Rust Completions528
C Completions449
BF Completions23
CoffeeScript Completions12
Swift Completions68
C# Completions439
Elixir Completions46
Dart Completions91
Groovy Completions14
Kotlin Completions148
Factor Completions5
COBOL Completions3
Total Stars1953
% of votes with a positive feedback rating94% of 1480
Total "Very Satisfied" Votes1332
Total "Somewhat Satisfied" Votes120
Total "Not Satisfied" Votes28
Ad
Contributors
  • ssineriz Avatar
  • jhoffner Avatar
  • laoris Avatar
  • muesli4 Avatar
  • asQuirreL Avatar
  • Unnamed Avatar
  • TieSoul Avatar
  • codeman869 Avatar
  • pablo.varela Avatar
  • brunolm Avatar
  • Korrigan Avatar
  • aryan-firouzian Avatar
  • ripesunflower Avatar
  • donaldsebleung Avatar
  • kazk Avatar
  • user5036852 Avatar
  • ArcaneIntegers Avatar
  • Blind4Basics Avatar
  • Varveyn Avatar
  • nomennescio Avatar
  • Keozon Avatar
  • Voile Avatar
  • ice1000 Avatar
  • Avanta Avatar
  • FArekkusu Avatar
  • hobovsky Avatar
  • akar-0 Avatar
  • Kacarott Avatar
  • dfhwze Avatar
Ad