return d[s1.length][s2.length] <= k;
};
+/**
+ * Supported artist name abbreviations.
+ */
+
+var abbreviations = {
+ ccr: 'creedence clearwater revival',
+ elo: 'electric light orchestra',
+ omd: 'orchestral manoeuvres in the dark',
+ rhcp: 'red hot chili peppers',
+ jsbx: 'the jon spencer blues explosion'
+};
+
/**
* Expose a function to check if the user answer is acceptable.
*/
}
}
}
- if (guess === 'ccr' && artist === 'creedence clearwater revival') {
- return true;
- }
- if (guess === 'elo' && artist === 'electric light orchestra') {
- return true;
- }
- if (guess === 'omd' && artist === 'orchestral manoeuvres in the dark') {
+ if (guess in abbreviations && artist === abbreviations[guess]) {
return true;
}
}