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
46 changes: 44 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
This is a test is intended to test your knowledge of basic programming, coding style, algorithms, django and javascript.
You will be judged more on the style of the code, maintainibility and readability than how the UI looks.
# Python Challenge


## Overview

Some programming exercises


## Installation

### Manual installation

#### Virtualenv
Recommended that you create a virtualenv to install this code and it's dependencies into.

See [virtualenv docs](https://pypi.python.org/pypi/virtualenv)

#### Run the install
You can install the code simply by running

`python setup.py install`

from the project's root directory.

## Usage

After installation the following will be available on your path

`nth-prime.py n`

You can run it without arguments to get a help message or specify an integer of reasonable size to see what the nth prime is.

`palindrome-product.py`


## Testing
You can run the automated tests with

`python setup.py test`

## Information

Source: https://github.com/lakeslc/pychallenge

Authors: [Jonathan Randall](https://github.com/lakeslc/)
20 changes: 0 additions & 20 deletions array.txt

This file was deleted.

6 changes: 0 additions & 6 deletions django_test/README.md

This file was deleted.

Empty file.
151 changes: 0 additions & 151 deletions django_test/django_test/settings.py

This file was deleted.

17 changes: 0 additions & 17 deletions django_test/django_test/urls.py

This file was deleted.

28 changes: 0 additions & 28 deletions django_test/django_test/wsgi.py

This file was deleted.

10 changes: 0 additions & 10 deletions django_test/manage.py

This file was deleted.

3 changes: 0 additions & 3 deletions palinodrome_product.py

This file was deleted.

2 changes: 0 additions & 2 deletions prime.py

This file was deleted.

4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
py==1.4.18
pychallenge==1.0.0
pytest==2.4.2
wsgiref==0.1.2
Loading