Skip to content
This repository was archived by the owner on Jun 4, 2019. It is now read-only.

freeCodeCamp's stand-alone Python coding challenges

License

Notifications You must be signed in to change notification settings

freeCodeCamp/python-coding-challenges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b435ab6 · Jul 31, 2017

History

54 Commits
Jun 20, 2017
Jul 30, 2017
Jun 20, 2017
Jun 20, 2017
Apr 21, 2017
Jun 20, 2017
Jun 20, 2017
Apr 21, 2017
Jun 20, 2017
Jun 8, 2017
Apr 21, 2017
Jun 8, 2017
Jun 20, 2017
Jun 20, 2017

FreeCodeCamp Python Curriculum

View live: https://freecodecamp.github.io/python-coding-challenges

To run locally:

  1. Fork this repo
  2. Run git clone [your-fork-url]
  3. Run npm install
  4. Run npm run start

Adding a new challenge or fixing an existing one?

  • Generating challenge ID:

    1. Open your terminal
    2. run mongo
    3. run ObjectId()
    4. copy string and paste into lesson_settings.json
  • Building challenges.json file:

    1. Open your terminal
    2. Navigate to project directory
    3. run node generate-challenge-json.js
    4. if no errors are thrown you're good to commit and open a pr
  • Opening a PR

    1. Include a reference to the issue
    2. If its a new challenge, mention the chapter its being added to
    3. continue being awesome and helping us create this curriculum!

Maintaining your Fork:

  1. git remote add upstream https://github.com/freeCodeCamp/python-coding-challenges.git
  2. git checkout master
  3. git pull upstream