Skip to content

Commit 6d150e9

Browse files
committed
Updated the createAnagrams coding challenge.
1 parent 20d4b7d commit 6d150e9

File tree

2 files changed

+3
-21
lines changed

2 files changed

+3
-21
lines changed

createAnagrams/createAnagrams.js

-7
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,6 @@
2424
* *
2525
**************************************************************/
2626

27-
28-
/**
29-
* example usage:
30-
* var anagrams = createAnagrams('abc');
31-
* console.log(anagrams); // [ 'abc', 'acb', 'bac', 'bca', 'cab', 'cba' ]
32-
*/
33-
3427
var createAnagrams = function(string) {
3528
/* YOUR CODE GOES HERE */
3629

createAnagrams/createAnagrams.test.js

+3-14
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
var should = require('should');
22
var vm = require('vm');
33
var fs = require('fs');
4+
var filename = __filename.replace(/\.test\.js$/, '.js');
5+
vm.runInThisContext(fs.readFileSync(filename), filename);
46

5-
// if this test is being run on a server it should be ONLY to test the
6-
// provided solutions
7-
if(typeof window === 'undefined'){
8-
// looks for a file with the same name as this one but with
9-
// `.test.js` replaced with `.js`
10-
var filename = __filename.replace(/\.test\.js$/, '.js');
11-
vm.runInThisContext(fs.readFileSync(filename), filename);
12-
}
137

148
describe('createAnagrams', function() {
159
it('should exist', function(){
@@ -22,6 +16,7 @@ describe('createAnagrams', function() {
2216

2317
it('should return an array', function() {
2418
var result = createAnagrams('hello');
19+
console.log('result', result);
2520
should.exist(result);
2621
result.should.be.an.instanceof(Array);
2722
});
@@ -79,8 +74,6 @@ describe('createAnagrams', function() {
7974
});
8075

8176
it('should return all __unique__ anagrams for \'apps\'', function() {
82-
// if you've gotten this far, you're doing awesome. this last test
83-
// is to check if you're returning an anagram array without duplicates
8477
var expected = [ 'apps', 'apsp', 'aspp', 'paps', 'pasp', 'ppas', 'ppsa'
8578
, 'psap', 'pspa', 'sapp', 'spap', 'sppa' ];
8679
var match = true;
@@ -89,10 +82,6 @@ describe('createAnagrams', function() {
8982
});
9083

9184
it('should not use underscore\'s `uniq`', function(){
92-
// this just checks your code for any usage of `_.uniq`
93-
// NOTE: this test _might_ still fail even if you technically don't use
94-
// `_.uniq` (ie., if you hae commented out code that still references
95-
// `_.uniq` in your solution.)
9685
var usesUniq = createAnagrams.toString().match(/\s*_\.uniq/) === null;
9786
usesUniq.should.be.true;
9887
})

0 commit comments

Comments
 (0)