Feature | Vercel | Render | Koyeb |
---|---|---|---|
Custom domain | ✅ | ✅ | ❌ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
/// CÓDIGO | |
/ ENTRADA | |
Input / Ingreso del número de elementos | |
Store cantidad / cantidad = input | |
Store i / i = cantidad | |
INI_CARGA, Load i / Inicio del ciclo de carga | |
Skipcond 800 / Continúa el ciclo si i > 0 | |
Jump FIN_CARGA / Termina el ciclo si i <= 0 | |
Subt _1 |
Servidor:
sudo bash <(wget -o /dev/null -nv -O - https://gist.githubusercontent.com/CrysoK/6c5e06094ca6a1a495eaec9a0b0320e6/raw/nfs_servidor.sh)
Clientes:
sudo bash <(wget -o /dev/null -nv -O - https://gist.githubusercontent.com/CrysoK/6c5e06094ca6a1a495eaec9a0b0320e6/raw/nfs_cliente.sh)
Sigue los siguientes pasos o ejecuta (no probado):
bash <(wget -o /dev/null -nv -O - https://gist.githubusercontent.com/CrysoK/10e86b3513cbcbbfcc92bdf33e57bcaf/raw/actualiza_chrome.sh)
Recomendado si apt update
da errores que no sabes cómo solucionar.
- Backup del archivo actual
Hay varias formas de usar Flex y Bison en Windows. A continuación, mi forma preferida:
MSYS2 es un conjunto de herramientas para el desarrollo de software en Windows. Puedes leer más en su sitio web.
This file contains 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
void bubbleSort(int arreglo[], int elementos) { | |
int yaOrdenados = 0; | |
int huboIntercambio; | |
int primeroSinOrdenar = 0; | |
do { | |
huboIntercambio = 0; | |
int i = primeroSinOrdenar; | |
primeroSinOrdenar++; | |
while(i < elementos - yaOrdenados - 1) { | |
if(arreglo[i] > arreglo[i + 1]) { |