Skip to content

Instantly share code, notes, and snippets.

View Elenadifino's full-sized avatar

Elenadifino

  • Joined Oct 24, 2025
View GitHub Profile
name: exercise 3.3
source code: |-
# exercise 3.3
input: '1011'
blank: '0'
start state: A
table:
# the four digits of the number have to be transposed to the right
A:
0: {write: 0, R: B}
name: exercise 3.2
source code: |-
# exercise 3.2
input: '1010'
blank: '0'
start state: A
table:
# the four digits of the number have to be transposed to the right
A:
0: {write: 0, R: B}