Specifications.Assign1
This assignment is due on Thursday 1/30 by 8:00PM. You should put all of your solutions in a file called assign1/lib/assign1.ml
. See the file test/test_assign1.ml
for example behavior of each function.
These problems come from a list of Exercises on OCaml's webpage. We won't grade these (the solutions are given with the problem statements) but we'll typically include a couple with each assignment for additional practice.
assign0
solution)A positive integer is perfect if it's equal to the sum of its proper divisors. For example, the integer is perfect since . Implement the function is_perfect
so that is_perfect n
is true
if n
is perfect and false
otherwise. The behavior of the function is undefined if n
is not positive.
Implement the function min_sos
so that min_sos n
is the minimum number of perfect squares required to sum up to n
. For example, and is not a perfect square so min_sos 8 = 2
. The behavior of the function is undefined if n
is negative.
Implement the function num_occurs
so that num_occurs ~sub:s t
is the number of occurrences of possibly overlapping instances of s
in t
. For example, the string "AA"
appears in the string "AAA"
twice as a substring so num_occurs ~sub:"AA" "AAA" = 2
. The behavior of the function is undefined if s
is the empty string. Hint. You should use the function String.sub
. See the Stdlib320 documentation for more details.
Note the use of labeled arguments. Please reread this subsection of OCP. This is not a core feature of OCaml but you should become comfortable with it.
Write down an English sentence which expresses the same thing as the above typing judgment. (Note: This operators is not in the OCaml standard library)
Write down an English sentence which expresses the same thing as the above typing rule. (Note: This operators is not in the OCaml standard library)
Write down an English sentences which express the same things as the above semantic rules. The symbol '' is Boolean negation (i.e., not
in OCaml).
Write down the semantic rule which expresses the same thing as the following English sentence:
If the expression evaluates to the Boolean value and the expression evaluates to the Boolean value , then the expression evaluates to .