Skip to content

JIK STEM navigation

aegwenia/jik/hidden-collection-report

Frontier Unlock 270 Ideal 285 CC0 1.0

Hidden inputs: collection report

A vector-shaped private contract covering folds, reverse, length, and empty input.

Acquire to open

Theory, examples, assessment, and private test answers stay inside the acquired repository copy.

Log in to acquire

Public source

Released under CC0 by the five-year publication rule.

(define (collection-report items)
  [(foldl (lambda [total item] (+ total item)) 0 items)
   (reverse items)
   (length items)])