GitXplorerGitXplorer
f

python-coding-challenges

public
180 stars
215 forks
23 issues

Commits

List of commits on branch master.
Unverified
b435ab650d85de267eeaa31a55ff77ef5dbff86b

Merge pull request #37 from Jamaurz/master

EEthan-Arrowood committed 7 years ago
Unverified
789601be705e684e9c362b2d04090a028149cef6

upadte and add new challenges

JJamaurz committed 7 years ago
Unverified
841a8f28f06e6406537fdc7bca8e1f2507d429bf

Merge pull request #36 from bgroveben/master

EEthan-Arrowood committed 7 years ago
Unverified
800e65416b739839f2a3d8bfcaaa2b44ec2e0900

Add mongo ObjectId's to lesson_settings files in Functions chapter

bbgroveben committed 8 years ago
Unverified
8a359457455b1224b7165c1328409a5648914607

Add lessons and challenges for Functions chapter

bbgroveben committed 8 years ago
Unverified
fe3e6c7e3ef217d904c5faeb48fd9492e379bafc

Merge pull request #35 from bgroveben/master

EEthan-Arrowood committed 8 years ago

README

The README file for this repository.

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