Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding robot.md to the repository #429

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
51 changes: 51 additions & 0 deletions robot.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Ironhack Data Analytics Bootcamp Prework Labs

This repository contains the labs for the Ironhack Data Analytics Bootcamp Prework.

**If you are an enrolled student in our upcoming bootcamp**, you can receive support from our instructional staff while you are working on these lab. Your Program Manager will send you information about how to reach out to our instructional support team.

**If you are not an enrolled student but find our repository in GitHub**, feel free to use this lab for personal, non-commcercial purposes. The codes are provided AS IS without support.

## Getting Started

You need to take our Prework lessons in our LMS and install Python, Jupyter Notebook, and other required software before taking these labs.

To get started, check out this repository to your local file system. Navigate to the repository directory in command line then start Jupyter Notebook. Take the labs based on the order suggested in the next section.

In the repository, you will find a bunch of directories. Each directory is a lab and it contains a Jupyter Notebook (`.ipynb`) file. Open the notebook file in browser. Then follow the step-by-step instructions to solve the challenge in the interactive coding environment.

## Submitting Your Work

If you are an enrolled student, **you are required to submit your solutions before your cohort starts**. Your Program Manager will send you information on how to submit your work.

## Suggested Order Based on Difficulty

1. [Snail and well](./snail-and-well)
1. [Duel of sorcerers](./duel)
1. [Bus](./bus)
1. [Robin Hood](./robin-hood)
1. [Processor temperature](./temperature)
1. [Rock Paper Scissors](./rock–paper–scissors)

## Q/A example

### Question

Question: How old are you if you were born in 1990?

### Answer

```
current = 2019
born = 1990
age = current - born
print ('Age =', age)
```

### Output

```
>>> Age = 29
```

Try your best and good luck. In some cases the use of functions is recommended.