Giter VIP home page Giter VIP logo

angry-purple-tiger's People

Contributors

allenan avatar cokes518 avatar jthiller avatar madninja avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

angry-purple-tiger's Issues

Several Duplicates

One of the tests is supposed to point out if any dupes exist. There are a number of them.

skinny
short
long
cool
hot
tangy
tiger (in colors and animals)
swift (in animals and adjectives)
mammoth (in animals and adjectives)
raccoon

Duplicate attribute and animal entries

The adjectives list contains duplicates of the words skinny, short, long, cool, hot and tangy.
The animal list contains duplicates of the word tiger, mammoth and raccoon.
The word swift is used both as an adjective and animal name.

It seems like the wordlists test should contain no duplicate entries should have caught this but it checks only against the original list lengths rather than the actual wordcount tally keys:

describe('wordlists', () => {
it('should contain no duplicate entries', () => {
const wordlist = adjectives.concat(colors).concat(animals);
const wordcount = wordlist.reduce((tally, word) => {
if(!tally[word]) {
tally[word] = 1;
} else {
tally[word] = tally[word] + 1;
}
return tally;
}, {});
expect(Object.keys(wordlist).length).to.equal(256 * 3);
})
})

Other (derived?) implementations such as angry-purple-tiger-rs and erl_angry_purple_tiger have the same issue.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.