Skip to content

Instantly share code, notes, and snippets.

View pony012's full-sized avatar

Alan Andrés Sánchez Castro pony012

View GitHub Profile
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Alan Andrés Sánchez Castro
from Tkinter import *
from Linea import *
from Automata import *
import Util
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class Automata:
def __init__(self):
W = 39
E = 20
self.W = W
self.E = E
"""
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
/*
Practica01
Sánchez Castro Alan Andrés
208697345
*/
#include <stdio.h>
#include <stdlib.h>
typedef struct nodo{
#include <iostream>
using namespace std;
bool isprime(int n);
int main(){
int n,i,j;