This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| #Alan Andrés Sánchez Castro | |
| from Tkinter import * | |
| from Linea import * | |
| from Automata import * | |
| import Util |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| class Automata: | |
| def __init__(self): | |
| W = 39 | |
| E = 20 | |
| self.W = W | |
| self.E = E | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| e000....86 59 | |
| e002....8B 78 | |
| e004....18 07 | |
| e006....6B 08 02 | |
| e009....87 | |
| e010....96 10 | |
| e012....9B 11 | |
| e014....5A 08 | |
| e016....FE 08 00 | |
| e019....06 E0 14 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Practica01 | |
| Sánchez Castro Alan Andrés | |
| 208697345 | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| typedef struct nodo{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| bool isprime(int n); | |
| int main(){ | |
| int n,i,j; |
NewerOlder