Created
May 10, 2015 08:13
-
-
Save emonidi/7b53e784578d77e3bde1 to your computer and use it in GitHub Desktop.
Revisions
-
emonidi created this gist
May 10, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ /* Have the function SimpleSymbols(str) take the str parameter being passed and determine if it is an acceptable sequence by either returning the string true or false. The str parameter will be composed of + and = symbols with several letters between them (ie. ++d+===+c++==a) and for the string to be true each letter must be surrounded by a + symbol. So the string to the left would be false. The string will not be empty and will have at least one letter. */ var correctString = '+d+=3=+s+'; var incorrectString = '+d=+3=2+' function SimpleSymbols(str){ function symbolPositions(){ return str.match(/[\d,a-z]/ig); } function isNumber(symbol){ return parseInt(symbol); } function checkSurroundings(symbol,surroundingSign){ return str[str.indexOf(symbol) - 1] === surroundingSign && str[str.indexOf(symbol) + 1] === surroundingSign; } var positions = symbolPositions(); for(var i = 0; i < positions.length; i++){ if(isNumber(positions[i])){ if(!checkSurroundings(positions[i],'=')){ return false; } }else{ if(!checkSurroundings(positions[i],'+')){ return false; } } } return true; } console.log(SimpleSymbols(correctString));