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

ej3 resuelto eq 1 #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\ejercicio_3.js"
}
]
}
88 changes: 88 additions & 0 deletions ejercicio_3.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,91 @@ Utilice estos ejemplos como resultados válidos para testear su aplicación.
** IMPORTANTE: Antes de escribir su código, cree un branch con su nombre o el de su equipo. Luego deberá subir al repositorio su resolución!

*/


console.log(tiempoEspera([5,3,4], 1)) //--> deberá devolver 12 ya que como sólo hay una caja se suman la cantidad de minutos consumidos por cliente.
console.log(tiempoEspera([10,2,3,3], 2)) //--> deberá devolver 10 ya que hay 2 cajas. Los clientes 2do, 3ero y 4to finalizan antes que el 1ero.
console.log(tiempoEspera([2,3,10], 2)) //--> deberá devolver 12


function tiempoEspera(cli, ncajas)
{
var tiempo = 0;
var cajas = [];

for (let i = 0; i < ncajas; i++) {
cajas.push(0);
}

cli=cli.reverse();
while (cli.length>0 || cajas.some(r=>r>0)) {

// cajas.forEach(caja => {
// if (caja===0) {
// caja = cli.pop()
// }
// else{
// caja--;
// }
// });

for (let i = 0; i < cajas.length; i++) {
if (cajas[i]===0) {
cajas[i] = cli.pop()
cajas[i]--;
}
else{
cajas[i]--;
}

}

tiempo++;


}


return tiempo;



// var res = 0;
// var cajaActiva = 1;
// if(ncajas < 2){
// arr_tiempos.forEach(item => {
// res+=item;
// });

// }
// else{
// for(i=0;i<arr_tiempos.length;i++){
// if(arr_tiempos[i] <= arr_tiempos[i+1]){
// cajaActiva +=1
// res+=arr_tiempos[i];

// }else{
// console.log(arr_tiempos[i])

// }
// }

// }
// return res;
/*
var time= 0;

var caja;


for (let i = 0; i < array.length; i++) {
const element = array[index];

for (let index = 0; index < array.length; index++) {
const element = array[index];

}

}
*/
}