Advertisement
divanov94

Untitled

May 1st, 2020
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function travelling(input) {
  2.  
  3.     let country=input.shift()
  4.         while(country !="End"){
  5.             let needMoney=Number(input.shift());
  6.            while (needMoney>0){
  7.                 let savedMoney=Number(input.shift())
  8.                 needMoney -=savedMoney;
  9.             }
  10.             console.log(`Going to ${country}!`);
  11.             country=input.shift();
  12.  
  13.         }
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement