Skip to content

Instantly share code, notes, and snippets.

View EmmaG2's full-sized avatar
🍬
I'm going to upload things in python (or java)

Emma Granados EmmaG2

🍬
I'm going to upload things in python (or java)
View GitHub Profile
@EmmaG2
EmmaG2 / file.py
Last active December 4, 2023 15:56
import random
n_random = random.randint(1, 250)
times = 0
list = []
n = 0
while n != n_random and times < 13:
n = int(input("Ingresa el número: "))
list.append(n)
@EmmaG2
EmmaG2 / cola.h
Last active October 28, 2024 19:20
#define MaxCola 100
class Cola
{
private:
int num_datos;
char vector[MaxCola];
public:
Cola();