Skip to content

Instantly share code, notes, and snippets.

View julijanjug's full-sized avatar
🎯
Focusing 🔜🏝☀️

julijanjug julijanjug

🎯
Focusing 🔜🏝☀️
  • Slovenia
View GitHub Profile
@julijanjug
julijanjug / multiplication_v3.yaml
Last active March 13, 2021 22:31
Algoritmi turing machine for multiplication
name: multiplication Julijan Jug
source code: |
# Adds 1 to a binary number.
input: '1101110'
blank: 'b'
start state: q0
table:
q0:
1: {write: 'b', R: q1}
0: {write: 'b', R: q13}