Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reto #16 - javascript #4891

Merged
merged 4 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions Retos/Reto #16 - LA ESCALERA [Media]/javascript/Pancratzia.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
* Crea una función que dibuje una escalera según su número de escalones.
* - Si el número es positivo, será ascendente de izquiera a derecha.
* - Si el número es negativo, será descendente de izquiera a derecha.
* - Si el número es cero, se dibujarán dos guiones bajos (__).
*
* Ejemplo: 4
* _
* _|
* _|
* _|
* _|
*
*
*
* Creado por Laura Ortega - 04/09/2023
*/

function drawStairs(n){

let stairs = '';

if(n===0) stairs="__";
else if (n<0){
stairs = "__";
for(let i=0; i<Math.abs(n); i++) stairs = stairs + "\n"+ " ".repeat(Math.abs(i+1))+ "|_" ;
}
else{
stairs += " ".repeat(Math.abs(n)) + "_" + "\n";
for(let i=0; i<n; i++) stairs += " ".repeat(Math.abs(i-n+1)) + "_|" + "\n";
}

console.log(stairs);

}


drawStairs(4);
drawStairs(-6);
drawStairs(0);
55 changes: 55 additions & 0 deletions Retos/Reto #17 - GIT Y GITHUB [Difícil]/javascript/Pancratzia.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* ¡Estoy de celebración! He publicado mi primer libro:
* "Git y GitHub desde cero"
* - Papel: mouredev.com/libro-git
* - eBook: mouredev.com/ebook-git
*
* ¿Sabías que puedes leer información de Git y GitHub desde la gran
* mayoría de lenguajes de programación?
*
* Crea un programa que lea los últimos 10 commits de este repositorio y muestre:
* - Hash
* - Autor
* - Mensaje
* - Fecha y hora
*
* Ejemplo de salida:
* Commit 1 (el más reciente) | 12345A | MoureDev | Este es un commit | 24/04/2023 21:00
*
* Se permite utilizar librerías que nos faciliten esta tarea.
*
*
* REALIZADO POR LAURA ORTEGA - 05/09/2023
*/





async function LastNCommits(n) {
try{

const res = await fetch("https://api.github.com/repos/mouredev/retos-programacion-2023/commits");
const data = await res.json();
let commits = [];
for (let i = 0; i < n; i++) {

commits.push({
commit: i + 1,
Hash: data[i].commit.tree.sha.slice(0, 7),
Autor: data[i].commit.author.name,
Mensaje: data[i].commit.message,
Fecha: new Date(data[i].commit.author.date).toLocaleString().toLocaleUpperCase(),
});


console.log(`Commit ${commits[i].commit} | ${commits[i].Hash} | ${commits[i].Autor} | ${commits[i].Mensaje.replace(/\n/g, " ")} | ${commits[i].Fecha}`);

}

}catch(error){
console.log(error)
}
}

LastNCommits(10)