Advertisement
Spocoman

Bank Number Generator

Sep 25th, 2023
1,011
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function bankNumberGenerator(input) {
  2.     let a = Number(input[0]);
  3.     let b = input[1].charCodeAt(0);
  4.     let c = input[2].charCodeAt(0);
  5.     let d = input[3].charCodeAt(0);
  6.     let e = Number(input[4]);
  7.     let n = Number(input[5]);
  8.    
  9.     for (let i = a; i <= 99; i++) {
  10.         for (let j = b; j <= 'Z'.charCodeAt(0); j++) {
  11.             for (let k = c; k <= 'z'.charCodeAt(0); k++) {
  12.                 for (let l = d; l <= 'Z'.charCodeAt(0); l++) {
  13.                     for (let m = e; m >= 10; m--) {
  14.                         if (i % 10 == 2 && m % 10 == 5) {
  15.                             n--;
  16.                             if (n == 0) {
  17.                                 console.log(`${i}${String.fromCharCode(j)}${String.fromCharCode(k)}${String.fromCharCode(l)}${m}`);
  18.                                 return;
  19.                             }
  20.                         }
  21.                     }
  22.                 }
  23.             }
  24.         }
  25.     }
  26.  
  27.     return;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement