Given an array of strings, returns the words with the same letters.
Example:
const strings = ['dog', 'god', 'letter', 'alphabet'];
returns dog,god
If there aren't any words with the same letters, returns empty.
npm install
npm start
(defaults with a hardcoded array)
npm test