Sum Distances To Origin Using Higher Order Functions Assignment
Jump to navigation
Jump to search
Contents
Motivation
Gain experience using higher-order functions.
Previous Warmup
This warmup is a variation of the Sum Distances To Origin with Functions warmup.
Library Functions to Use
Math
List
Note: you should only require one of the higher-order functions listed below:
Code To Implement
file: | src/main/sml/warmup_sum_distances_to_origin_using_hof/sum_distances_to_origin.sml | |
functions: | sum_distances_to_origin |
fun sum_distances_to_origin(xys : (real * real) list)
Test
source folder: | src/test/sml/warmup_sum_distances_to_origin_using_hof |
how to run with CM.make verbosity off: | sml -Ccm.verbose=false run_sum_distances_to_origin_using_hof_testing.sml |
how to run with CM.make verbosity on: | sml run_sum_distances_to_origin_using_hof_testing.sml |
note: ensure that you have removed all printing to receive credit for any assignment.