https://github.com/farinap5/mtc
Simple C Turing Machine
https://github.com/farinap5/mtc
Last synced: about 1 month ago
JSON representation
Simple C Turing Machine
- Host: GitHub
- URL: https://github.com/farinap5/mtc
- Owner: farinap5
- Created: 2023-09-25T01:11:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-11T19:18:52.000Z (over 1 year ago)
- Last Synced: 2025-01-21T00:50:36.954Z (3 months ago)
- Language: C
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**Entries**
```
abcd
5
11
1 a x D 2
1 y y D 4
1 - - D 5
2 a a D 2
2 y y D 2
2 b y E 3
3 a a E 3
3 y y E 3
3 x x D 1
4 y y D 4
4 - - D 5
4
aabb
aaabbb
abab
bbaa
```
**Output**
```
1: aabb OK
2: aaabbb OK
3: abab not OK
4: bbaa not OK
```