Andela-Proctor-Labs icon indicating copy to clipboard operation
Andela-Proctor-Labs copied to clipboard

Tests and Solutions to Andela Home Study Curriculum Proctor Labs

Results 3 Andela-Proctor-Labs issues
Sort by recently updated
recently updated
newest added

function isIsogram(word){ var mySet = new Set(word); var nWord = []; for(i=0; i < word.length; i++){ nWord.push(word[i]); } if (nWord.length !== mySet.size){ console.log(true) } else console.log(false) } isIsogram("benin"); I GET...

The section where you create super class of bank accounts with two sub classes. All visible test are ok, but what about the hidden test there

hey if only i could understand what this test is all about...i have written code just how they described but when i try to run them its not accepted..its like...