Implemented suggesting improvements
This commit is contained in:
@ -1,11 +0,0 @@
|
||||
const anagrams = str => {
|
||||
if (str.length <= 2) return str.length === 2 ? [str, str[1] + str[0]] : [str];
|
||||
return str
|
||||
.split('')
|
||||
.reduce(
|
||||
(acc, letter, i) =>
|
||||
acc.concat(anagrams(str.slice(0, i) + str.slice(i + 1)).map(val => letter + val)),
|
||||
[]
|
||||
);
|
||||
};
|
||||
module.exports = anagrams;
|
||||
@ -1,16 +0,0 @@
|
||||
const test = require('tape');
|
||||
const anagrams = require('./anagrams.js');
|
||||
|
||||
test('Testing anagrams', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof anagrams === 'function', 'anagrams is a Function');
|
||||
t.deepEqual(anagrams('abc'), ['abc','acb','bac','bca','cab','cba'], "Generates all anagrams of a string");
|
||||
t.deepEqual(anagrams('a'), ['a'], "Works for single-letter strings");
|
||||
t.deepEqual(anagrams(''), [''], "Works for empty strings");
|
||||
//t.deepEqual(anagrams(args..), 'Expected');
|
||||
//t.equal(anagrams(args..), 'Expected');
|
||||
//t.false(anagrams(args..), 'Expected');
|
||||
//t.throws(anagrams(args..), 'Expected');
|
||||
t.end();
|
||||
});
|
||||
5
test/isAnagram/isAnagram.js
Normal file
5
test/isAnagram/isAnagram.js
Normal file
@ -0,0 +1,5 @@
|
||||
const isAnagram = (str1, str2) => {
|
||||
const normalize = str => str.toLowerCase().replace(/[^a-z0-9]/gi, '').split('').sort().join('');
|
||||
return normalize(str1) === normalize(str2);
|
||||
}
|
||||
module.exports = isAnagram;
|
||||
17
test/isAnagram/isAnagram.test.js
Normal file
17
test/isAnagram/isAnagram.test.js
Normal file
@ -0,0 +1,17 @@
|
||||
const test = require('tape');
|
||||
const isAnagram = require('./isAnagram.js');
|
||||
|
||||
test('Testing isAnagram', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof isAnagram === 'function', 'isAnagram is a Function');
|
||||
t.true(isAnagram('iceman', 'cinema'), 'Checks valid anagram');
|
||||
t.true(isAnagram('rail safety', 'fairy tales'), 'Works with spaces');
|
||||
t.true(isAnagram('roast beef', 'eat for BSE'), 'Ignores case');
|
||||
t.true(isAnagram('Regera Dowdy', 'E. G. Deadworry'), 'Ignores special characters');
|
||||
//t.deepEqual(isAnagram(args..), 'Expected');
|
||||
//t.equal(isAnagram(args..), 'Expected');
|
||||
//t.false(isAnagram(args..), 'Expected');
|
||||
//t.throws(isAnagram(args..), 'Expected');
|
||||
t.end();
|
||||
});
|
||||
14
test/permutations/permutations.js
Normal file
14
test/permutations/permutations.js
Normal file
@ -0,0 +1,14 @@
|
||||
const permutations = arr => {
|
||||
if (arr.length <= 2) return arr.length === 2 ? [arr, [arr[1], arr[0]]] : arr;
|
||||
return arr.reduce(
|
||||
(acc, item, i) =>
|
||||
acc.concat(
|
||||
permutations([...arr.slice(0, i), ...arr.slice(i + 1)]).map(val => [
|
||||
item,
|
||||
...val,
|
||||
])
|
||||
),
|
||||
[]
|
||||
);
|
||||
};
|
||||
module.exports = permutations;
|
||||
14
test/permutations/permutations.test.js
Normal file
14
test/permutations/permutations.test.js
Normal file
@ -0,0 +1,14 @@
|
||||
const test = require('tape');
|
||||
const permutations = require('./permutations.js');
|
||||
|
||||
test('Testing permutations', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof permutations === 'function', 'permutations is a Function');
|
||||
t.deepEqual(permutations([1, 33, 5]), [ [ 1, 33, 5 ], [ 1, 5, 33 ], [ 33, 1, 5 ], [ 33, 5, 1 ], [ 5, 1, 33 ], [ 5, 33, 1 ] ], 'Generates all permutations of an array');
|
||||
//t.deepEqual(permuteAll(args..), 'Expected');
|
||||
//t.equal(permuteAll(args..), 'Expected');
|
||||
//t.false(permuteAll(args..), 'Expected');
|
||||
//t.throws(permuteAll(args..), 'Expected');
|
||||
t.end();
|
||||
});
|
||||
@ -1,26 +0,0 @@
|
||||
const permuteAll = (input) => {
|
||||
const result = [];
|
||||
let inputState = input;
|
||||
|
||||
if (typeof input === 'string') inputState = input.split('');
|
||||
if (typeof input === 'number') inputState = (input).toString().split('');
|
||||
|
||||
const permute = (arr, m = []) => {
|
||||
(arr.length === 0)
|
||||
? result.push(m)
|
||||
: arr.forEach((_, i) => {
|
||||
let curr = arr.slice();
|
||||
let next = curr.splice(i, 1);
|
||||
permute(curr.slice(), m.concat(next));
|
||||
});
|
||||
};
|
||||
|
||||
permute(inputState);
|
||||
|
||||
return (typeof input === 'string')
|
||||
? result.map(variant => variant.join(''))
|
||||
: (typeof input === 'number')
|
||||
? result.map(variant => parseFloat(variant.join('')))
|
||||
: result;
|
||||
};
|
||||
module.exports = permuteAll;
|
||||
@ -1,13 +0,0 @@
|
||||
const test = require('tape');
|
||||
const permuteAll = require('./permuteAll.js');
|
||||
|
||||
test('Testing permuteAll', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof permuteAll === 'function', 'permuteAll is a Function');
|
||||
//t.deepEqual(permuteAll(args..), 'Expected');
|
||||
//t.equal(permuteAll(args..), 'Expected');
|
||||
//t.false(permuteAll(args..), 'Expected');
|
||||
//t.throws(permuteAll(args..), 'Expected');
|
||||
t.end();
|
||||
});
|
||||
11
test/stringPermutations/stringPermutations.js
Normal file
11
test/stringPermutations/stringPermutations.js
Normal file
@ -0,0 +1,11 @@
|
||||
const stringPermutations = str => {
|
||||
if (str.length <= 2) return str.length === 2 ? [str, str[1] + str[0]] : [str];
|
||||
return str
|
||||
.split('')
|
||||
.reduce(
|
||||
(acc, letter, i) =>
|
||||
acc.concat(stringPermutations(str.slice(0, i) + str.slice(i + 1)).map(val => letter + val)),
|
||||
[]
|
||||
);
|
||||
};
|
||||
module.exports = stringPermutations;
|
||||
16
test/stringPermutations/stringPermutations.test.js
Normal file
16
test/stringPermutations/stringPermutations.test.js
Normal file
@ -0,0 +1,16 @@
|
||||
const test = require('tape');
|
||||
const stringPermutations = require('./stringPermutations.js');
|
||||
|
||||
test('Testing stringPermutations', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof stringPermutations === 'function', 'stringPermutations is a Function');
|
||||
t.deepEqual(stringPermutations('abc'), ['abc','acb','bac','bca','cab','cba'], "Generates all stringPermutations of a string");
|
||||
t.deepEqual(stringPermutations('a'), ['a'], "Works for single-letter strings");
|
||||
t.deepEqual(stringPermutations(''), [''], "Works for empty strings");
|
||||
//t.deepEqual(anagrams(args..), 'Expected');
|
||||
//t.equal(anagrams(args..), 'Expected');
|
||||
//t.false(anagrams(args..), 'Expected');
|
||||
//t.throws(anagrams(args..), 'Expected');
|
||||
t.end();
|
||||
});
|
||||
1933
test/testlog
1933
test/testlog
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user