Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 000/exercise/exercise000.md → 000/exercise/readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Exercise goal:
# Exercise goal
- Learn the 'print' statement in Python 3.xx

Task:
# Task
- Print out 'hello world!'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,16 @@ If you are not familir with git, we follow the general ["fork-and-pull"](https:/

## Structuring the execise or solution

First, create the folder based on the next number of the project. For e.g., if you see `015` folder being the latest project folder, then create the `016` folder. Within that, the directory layout should be:
First, create the folder based on the next number of the project. For e.g., if you see `015` folder being the latest project folder, then create the `016` folder. Within that, the directory layout should be of the following format:

.
├── exercise # Exercise folder
│ └── readme.md # A mark-down clear and expansive description of the exercise. Data, goals, methods to use and etc
└── solution # Solution Folder
├── readme.md # A short description on the solutions and what each file does
└── random_forest.ipynb # Jupyter notebook solution
└── cnn.py # A python .py solution
└── cnn.py # A python .py solution
└── train.csv # Some data
└── ...


Expand Down