Difference between revisions of "Is Strictly Ascending With Pattern Matching Assignment"

From CSE425S Wiki
Jump to navigation Jump to search
(Created page with "Reimplement Is Strictly Ascending with pattern matching. =Code to Implement= {{SMLToImplement|is_strictly_ascending_pattern|is_strictly_a...")
 
Line 4: Line 4:
 
{{SMLToImplement|is_strictly_ascending_pattern|is_strictly_ascending_pattern|warmup_is_strictly_ascending_pattern}}
 
{{SMLToImplement|is_strictly_ascending_pattern|is_strictly_ascending_pattern|warmup_is_strictly_ascending_pattern}}
 
=Test=
 
=Test=
{{SMLUnitTest|is_strictly_ascending_pattern|warmup_is_strictly_ascending_pattern}}
+
{{SMLUnitTesting|run_is_strictly_ascending_pattern_testing|warmup_is_strictly_ascending_pattern}}

Revision as of 03:57, 5 September 2022

Reimplement Is Strictly Ascending with pattern matching.

Code to Implement

file: src/main/sml/warmup_is_strictly_ascending_pattern/is_strictly_ascending_pattern.sml Smlnj-logo.png
functions: is_strictly_ascending_pattern

Test

source folder: src/test/sml/warmup_is_strictly_ascending_pattern
how to run with CM.make verbosity off: sml -Ccm.verbose=false run_is_strictly_ascending_pattern_testing.sml
how to run with CM.make verbosity on: sml run_is_strictly_ascending_pattern_testing.sml

note: ensure that you have removed all printing to receive credit for any assignment.

SML Error Messages