Assignment 2: Solve a Problem
Due: Tuesday the 11th of February at 4:10 pm
Purpose
- Solve a simple problem with your favorite language
- Submit this work via a Pull Request (PR) using GitHub
Partners
This is an individual assignment.
Assignment
- Pick a problem from project euler or the kattis archive.
- Implement a solution to the problem using any language you want.
- Write a README.md that
- describes your solution
- informs another user how to setup the local environment
- how to run this code to yield the solution with sample input
Submission
Submit a PR to the sleddog/methods-spring-2020 repository from a branch named appropriately (i.e. *yourname*-assignment2). Create a directory structure under the problems top level directory as follows:
./methods-spring-2020/problems/*type*/*problem-name*/*language*/*yourname*/
Where:
- type is either 'euler' or 'kattis'
- problem-name is the name of the problem in euler or kattis (e.g. number6 or abc)
- language is the coding language you used (e.g. python or java)
- yourname is your github user name
For example:
./methods-spring-2020/problems/kattis/different/kotlin/sleddog
Grading - 10 points
- 4 points - solution to the problem
- 3 points - README instructions
- 3 points - Pull Request, branch, and solution directories created correctly