Difference between revisions of "Is Strictly Ascending Assignment"
Jump to navigation
Jump to search
(Created page with "=Code to Implement= {{SMLToImplement|is_strictly_ascending|is_strictly_ascending|warmup_is_strictly_ascending}} ==is_strictly_ascending== Write a function fun is_strictly_...") |
(→Test) |
||
Line 11: | Line 11: | ||
=Test= | =Test= | ||
− | {{ | + | {{SMLUnitTesting|run_is_strictly_ascending_testing|warmup_is_strictly_ascending}} |
Revision as of 02:27, 5 September 2022
Code to Implement
file: | src/main/sml/warmup_is_strictly_ascending/is_strictly_ascending.sml | |
functions: | is_strictly_ascending |
is_strictly_ascending
Write a function
fun is_strictly_ascending(xs : int list) : bool
which returns true if every value in xs
is strictly less than all of the values which follow it.
Test
source folder: | src/test/sml/warmup_is_strictly_ascending |
how to run with CM.make verbosity off: | sml -Ccm.verbose=false run_is_strictly_ascending_testing.sml |
how to run with CM.make verbosity on: | sml run_is_strictly_ascending_testing.sml |
note: ensure that you have removed all printing to receive credit for any assignment.