[chore] TSLint violation cleanup

This commit is contained in:
Steven Evans 2018-07-03 23:50:25 -04:00
parent 78c5a1b0f4
commit b84e9749f6

@ -49,7 +49,8 @@ function longestCommonStart(strings: string[]): string {
if (!containsAllStrings(strings)) {return ""; }
if (strings.length === 0) {return ""; }
const A: string[] = strings.concat().sort();
const A: string[] = strings.concat()
.sort();
const a1: string = A[0];
const a2: string = A[A.length - 1];
const L: number = a1.length;