Hi all ,
I am stuck looking for a solution for a challenge for a bootcamp - I am a n00b, so I cannot understand where am I getting this wrong. Could someone please help me identify what’s wrong?
I have been googling while loops and if statements, and if statements withing while loops, to verify if I made a mistake - which I did, clearly - but where, exactly?
Here is the challenge:
You know that your target’s password is 4 characters long, so you’ll just have to brute force 1 character at a time. We already declared the variable correctGuesses which you should use to keep track of how many characters you have guessed so far.
Bear in mind that your program does not need to guess the password, that is not your goal!
You need to create a loop that only stops when all 4 characters have been guessed. On each loop iteration you need to calculate a random number between 1 and 3, which will correspond to each of the bellow scenarios:
You guessed one character correctly, which increases correctGuesses by 1 and prints the message ‘Found X characters’ (where X is replaced with the current number of correct guesses).
You guessed incorrectly and your target’s terminal has detected too many attempts, which resets correctGuesses to 0 and prints the message ‘Starting over’ to the console.
You guessed incorrectly, but have not been detected yet, correctGuesses is kept with the same value.
Once the password is cracked (that is, correctGuesses has a value of 4) you should print the message ‘Terminal hacked!’.
Make sure all the messages in your code are in the correct format in order to advance!
Here’s my code:
var correctGuesses = 0;
var password = 4;
var tries;
while (correctGuesses < 4){
tries = Math.ceil(Math.random()*3);
if(tries === 1){
correctGuesses++;
console.log('Found' + ' ' + correctGuesses + ' ' + 'characters');
} else if (tries === 2){
correctGuesses = 0;
console.log('Starting over');
} else if (tries === 3){
console.log(correctGuesses);
}
if (correctGuesses === password) {
console.log('Terminal hacked!');
}
}
I am a noob and am also stuck in this for a while now (pun intended!).
The error that it gives me is:
Code is incorrect
You guessed some characters correctly, but failed to do the right thing!