Assignment 2: Solve a Problem

Due: Tuesday the 11th of February at 4:10 pm

Purpose

Partners

This is an individual assignment.

Assignment

  1. Pick a problem from project euler or the kattis archive.
  2. Implement a solution to the problem using any language you want.
  3. 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:
  1. type is either 'euler' or 'kattis'
  2. problem-name is the name of the problem in euler or kattis (e.g. number6 or abc)
  3. language is the coding language you used (e.g. python or java)
  4. yourname is your github user name
For example:
./methods-spring-2020/problems/kattis/different/kotlin/sleddog

Grading - 10 points