Merge pull request #1512 from djordjelacmanovic/djordjelacmanovic-1511

fixed issue #1511 - now checking for words longer than 9 chars
This commit is contained in:
Berkeley Martinez
2015-08-10 20:40:39 -07:00

View File

@ -192,7 +192,8 @@
"expect(findLongestWord('The quick brown fox jumped over the lazy dog')).to.equal(6);",
"expect(findLongestWord('May the force be with you')).to.equal(5);",
"expect(findLongestWord('Google do a barrel roll')).to.equal(6);",
"expect(findLongestWord('What is the average airspeed velocity of an unladen swallow')).to.equal(8);"
"expect(findLongestWord('What is the average airspeed velocity of an unladen swallow')).to.equal(8);",
"expect(findLongestWord('What if we try a super-long word such as otorhinolaryngology')).to.equal(19);"
],
"MDNlinks": [
"String.split()",