- hola: presentación y formulario en vivo.
- Qué es la programación.
- Lenguajes de programación.
https://devskiller.com/history-of-programming-languages/
- Por favor díganme que han revisado esto antes de ingresar.
- Facultad: https://unmsm.edu.pe/formacion-academica/facultades
- Planes de estudio: https://sum.unmsm.edu.pe/loginWebSum/planes.htm
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
import docker | |
import discord | |
import asyncio | |
import sqlite3 | |
import io | |
import functools | |
import os | |
from os import listdir | |
from os.path import isfile, join | |
from datetime import datetime, timedelta, timezone |
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
def beadsort(input_list: list[int]): | |
"""Bead sort.""" | |
return_list = [] | |
# Initialize a 'transposed list' to contain as many elements as | |
# the maximum value of the input -- in effect, taking the 'tallest' | |
# column of input beads and laying it out flat | |
transposed_list = [0] * max(input_list) | |
for num in input_list: | |
# For each element (each 'column of beads') of the input list, | |
# 'lay the beads flat' by incrementing as many elements of the |