A0: Warmup

Deadline: Wednesday, 02/07/18, 11:59 pm

This assignment is to be done as individuals, not with partners nor with teams. Please review the course policies on academic integrity.

This assignment is designed to be a warmup: it's considerably easier and shorter than any of the other assignments in the course. Accordingly, it will be worth only about 1% of your final grade. The main purpose of the assignment is to give you a low-stakes opportunity to experience the 3110 assignment workflow, especially coding to a specification and being graded against the course staff's test suite.

Objectives:

Recommended reading:

Requirements:

What we provide: In the release code on the course website you will find these files:

Grading issues:

Prohibited OCaml features: You may not use imperative data structures, including refs, arrays, mutable fields, and the Bytes and Hashtbl modules. (We haven't covered any of those, so it's okay if they sound mysterious.) Strings are allowed, but the deprecated functions on them in the String module are not, because those functions provide imperative features. Your solutions may not require linking any additional libraries/packages beyond the standard library, which is linked by default.

Part 0: Sanity check

Download the release code. Run make check from the folder containing the release code. You should get output that includes the following (other lines might be interspersed):

===========================================================
Your OCaml environment looks good to me.  Congratulations!
===========================================================
Your function names and types look good to me.
Congratulations!
===========================================================

If instead you get warnings about your OCaml environment, seek help immediately from a consultant: something is wrong with the version of OCaml you have installed.

Assuming your environment is good, you should not get warnings about about your function names and types at this point, because you haven't modified the provided file warmup.ml yet. As you complete the assignment, you will be modifying that file. As you solve each part of the assignment, you should re-run make check to ensure that you haven't changed the names or types of any of the required functions.

Running make clean will delete generated files produced by the make and build systems.

Part 1: Functions

Implement each of the following three functions. In doing so, consider: how elegant can you make your implementation? Though we identify which lab you could do each problem after, you are encouraged to use any useful language features you have learned in any labs.

Here are a few frequently asked questions that often come up on the first assignment in the course:


Valid date [doable after Lab 1]. Define a function valid_date : int -> string -> int -> bool that takes an an integer y, a string m, and an integer d as input and returns true just when y and m and d form a valid date. Here, a valid date has

For example, valid_date 2020 "Feb" 29 = true, and valid_date 2010 "Jun" 50 = false.

(For calendar geeks only: pretend that the entire Common Era has used the Gregorian calendar.)


Syracuse [doable after Lab 2]. Define a function syr : int -> int that takes a strictly positive integer n as input, applies the following operation repeatedly to that input until the result is 1, and returns the number of times the operation had to be applied. If the input is already 1, the function returns 0.

For example, syr 1 = 0, because the operation doesn't need to be applied at all: the input is already 1. Further, syr 2 = 1, because applying the operation once produces 1. Similarly, syr 10 = 6.

(Why call this function syr? Because it is related to the Collatz conjecture aka the Syracuse problem. See Wikipedia and XKCD. The function is known to terminate on all positive OCaml integers.)


Nacci [doable after Lab 3]. Define a function nacci : int -> int -> int list that takes an integer n and an integer k as input, both of which must be strictly greater than zero, and returns the first k elements of the n-step Fibonacci sequence. For example, nacci 2 produces the Fibonacci sequence, so nacci 2 6 = [1; 1; 2; 3; 5; 8].


Testing

We encourage you to get into the habit of testing your implementation early and often. In assignments after this one, we will ask you to turn in OUnit test suites. But for this warmup assignment, we won't collect your tests. You should nonetheless test.

The test cases provided above are a good starting point. Here they are, expressed as assertions that you could put in your source code.

let () = assert (valid_date 2020 "Feb" 29)
let () = assert (not (valid_date 2010 "Jun" 50))

let () = assert (syr 1 = 0)
let () = assert (syr 2 = 1)
let () = assert (syr 10 = 6)

let () = assert (nacci 1 6 = [1;1;1;1;1;1])
let () = assert (nacci 2 6 = [1;1;2;3;5;8])
let () = assert (nacci 3 6 = [1;1;2;4;7;13])

What to turn in

Submit files with these names on CMS:

REMINDER: ensure that your solution passes the make check test described in Part 0; if it does not, your solution will receive minimal credit.