Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/osleonardo/linguagensformais
https://github.com/osleonardo/linguagensformais
api api-rest college college-project csharp formal-languages swagger swagger-ui
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/osleonardo/linguagensformais
- Owner: osLeonardo
- Created: 2024-03-31T21:20:45.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-04-10T22:37:13.000Z (10 months ago)
- Last Synced: 2024-04-11T01:51:38.123Z (10 months ago)
- Topics: api, api-rest, college, college-project, csharp, formal-languages, swagger, swagger-ui
- Language: C#
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
URL GitHub Repository: https://github.com/osLeonardo/LinguagensFormais
Exemples to copy/paste in the API (same as the 'examples' endpoint response):
example 01:
{
"n": [ "S", "A" ],
"t": [ "0", "1", "2" ],
"p": {
"S": [ "0A", "1S", "2S" ],
"A": [ "0A", "1S", "2S", "" ]
},
"s": "S"
}example 02:
{
"n": [ "S", "A", "B", "C" ],
"t": [ "a", "b", "c" ],
"p": {
"S": [ "ABC" ],
"A": [ "aA", "a" ],
"B": [ "bB", "" ],
"C": [ "cA" ]
},
"s": "S"
}example 03:
{"n": [ "S", "A", "B" ],
"t": [ "0", "1" ],
"p": {
"S": [ "0B", "1A" ],
"A": [ "0", "0S", "1AA" ],
"B": [ "1", "1S", "0BB" ]
},
"s": "S"
}example 04:
{
"n": [ "S", "A", "B", "C" ],
"t": [ "a", "b", "c" ],
"p": {
"S": [ "aA" ],
"A": [ "", "aB", "bC", "cC" ],
"B": [ "aA" ],
"C": [ "bC", "cC", "" ]
},
"s": "S"
}example 05:
{
"n": [ "S", "A", "B", "C" ],
"t": [ "", "a", "b" ],
"p": {
"S": [ "AB", "CA" ],
"A": [ "a", "b" ],
"B": [ "BC", "b" ],
"C": [ "AB", "" ]
},
"s": "S"
}