longestString
should be a function.
testString: assert(typeof longestString == 'function');
- text: longestString(["a", "bb", "ccc", "ee", "f", "ggg"])
should return a array.
testString: assert(Array.isArray(longestString(["a", "bb", "ccc", "ee", "f", "ggg"])));
- text: longestString(["a", "bb", "ccc", "ee", "f", "ggg"])
should return ["ccc", "ggg"]'
.
testString: assert.deepEqual(longestString(["a", "bb", "ccc", "ee", "f", "ggg"]), ["ccc", "ggg"]);
- text: longestString(["afedg", "bb", "sdccc", "efdee", "f", "geegg"])
should return ["afedg", "sdccc", "efdee", "geegg"]
.
testString: assert.deepEqual(longestString(["afedg", "bb", "sdccc", "efdee", "f", "geegg"]), ["afedg", "sdccc", "efdee", "geegg"]);
- text: longestString(["a", "bhghgb", "ccc", "efde", "fssdrr", "ggg"])
should return ["bhghgb", "fssdrr"]
.
testString: assert.deepEqual(longestString(["a", "bhghgb", "ccc", "efde", "fssdrr", "ggg"]), ["bhghgb", "fssdrr"]);
- text: longestString(["ahgfhg", "bdsfsb", "ccc", "ee", "f", "ggdsfg"])
should return ["ahgfhg", "bdsfsb", "ggdsfg"]
.
testString: assert.deepEqual(longestString(["ahgfhg", "bdsfsb", "ccc", "ee", "f", "ggdsfg"]), ["ahgfhg", "bdsfsb", "ggdsfg"]);
- text: longestString(["a", "bbdsf", "ccc", "edfe", "gzzzgg"])
should return ["gzzzgg"]
.
testString: assert.deepEqual(longestString(["a", "bbdsf", "ccc", "edfe", "gzzzgg"]), ["gzzzgg"]);
```