kyle-hall / Basic-JS-Algorithms

Algorithms in Javscript, including Q Learning in js.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

forthebadge forthebadge forthebadge

Say Thanks!

Solutions of Basic Algorithms Scripting (Free Code Camp)

Contributing

  1. Create your branch: git checkout -b my-new-feature

  2. Commit your changes: git commit -m 'Add some feature'

  3. Push to the branch: git push origin my-new-feature

  4. Send a Pull Request

  5. Enjoy!

Coding standards

  1. Variables name should be in camelCase

  2. Always put spaces around operators ( = + - * / ), and after commas

  3. Always use 1 tab space for indentation of code blocks

  4. Always end a simple statement with a semicolon.

  5. Put the opening bracket at the end of the first line.

  6. Use one space before the opening bracket.

  7. Put the closing bracket on a new line, without leading spaces.

  8. Use lower case file names without any special characters or spaces.

About

Algorithms in Javscript, including Q Learning in js.

License:MIT License


Languages

Language:JavaScript 100.0%