An open API service indexing awesome lists of open source software.

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

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
```