Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

CPSC110 Pset8 solution

Beoordeling
-
Verkocht
-
Pagina's
8
Cijfer
A
Geüpload op
16-11-2025
Geschreven in
2025/2026

This is the correct and the latest solution for pset 8.

Instelling
Vak

Voorbeeld van de inhoud

;​; DO NOT PUT ANYTHING PERSONALLY IDENTIFYING BEYOND YOUR CWL IN THIS​
​FILE.​
​;; YOUR CWLs WILL BE SUFFICIENT TO IDENTIFY YOU.​
​;;​
​(require spd/tags)​

​(@assignment psets/pset-08); Do not edit or remove this tag​

;​; These problems will be autograded. NOTE that, for problems 1-5, all of the​
​;; following are required. Violating one or more will cause your solution to​
​;; receive 0 marks.​
​;;​
​;; - Files must not have any errors when the Check Syntax button is pressed.​
​;; Press Check Syntax and Run often, and correct any errors early.​
​;;​
​;; - The function definition MUST call one or more built-in abstract functions.​
​;;​
​;; - For maximum credit the function definition should use the most clear​
​;; and expressive combination of abstract functions. In particular, while​
​;; it is possible to just use foldr for these problems that is not always​
​;; correct. If what is happening is a filter, then it is not correct to​
​;; just implement filtering with foldr.​
​;;​
​;; - The function definition MUST NOT be recursive.​
​;;​
​;; - The function definition MUST NOT use any part of the recursive Natural​
​;; template or the (listof X) template.​
​;;​
​;; - it must not include (cond [(empty? ... anywhere​
​;; - it must not include (cond [(zero? ... anywhere​
​;; - it must not include (if (empty? ... anywhere​
​;; - it must not include (if (zero? ... anywhere​
​;;​
​;; - The result of the function must directly be the result of one of the​
​;; built-in abstract functions. So, for example, the following is not​
​;; a valid function body:​
​;;​
​;; (define (foo x)​
​;; (empty? (filter ...)))​
​;;​
​;; - You MUST NOT change or comment out any check-expects, but you are free​
​;; to add new ones.​

(​ @problem 1)​
​;;​
​;; Design a function called sum-squares that consumes a list of naturals,​
​;; and produces the sum of squaring all of the naturals in the list.​
​;;​

, ;​; For example: (sum-squares (list 5 2 4)) produces 45.​
​;;​
​;; Your function definition must use built-in abstract functions.​
​;; For full marks it must be a composition of exactly 2 built-in​
​;; abstract functions.​
​;;​

(​ @htdf sum-squares)​
​(@signature (listof Natural) -> Natural)​
​;; produce the sum of squaring all of the numbers in lon​
​(check-expect (sum-squares empty) 0)​
​(check-expect (sum-squares (list 5 2 4))​
​(+ (sqr 5) (sqr 2) (sqr 4)))​

​(@template-origin fn-composition use-abstract-fn)​

​(define (sum-squares lon)​
​(foldr + 0 (map sqr lon)))​


(​ @problem 2)​
​;;​
​;; Complete the design of the following function.​
​;;​
​;; Your function definition must use built-in abstract functions.​
​;; For full marks it must be a composition of exactly 2 built-in​
​;; abstract functions.​
​;;​
​;; NOTE: Looking up the function string-contains? in the help desk​
​;; might be helpful...​

(​ @htdf all-a-contain?)​
​(@signature (listof String) String -> Boolean)​
​;; determine if all strings that begin with the letter 'a' contain word w​
​(check-expect (all-a-contain? empty "word") true)​
​(check-expect (all-a-contain? (list "bicycle" "car" "train" "walk")​
​"transportation")​
​true)​
​(check-expect (all-a-contain? (list "assignment") "eight") false)​
​(check-expect (all-a-contain? (list "attend" "radio" "antenna" "listen" "study")​
​"ten")​
​true)​
​(check-expect (all-a-contain? (list "art" "bin" "action" "tin") "in") false)​
​(check-expect (all-a-contain? (list "art" "artery" "ban" "action" "tin")​
​"art")​
​false)​

​(@template-origin fn-composition use-abstract-fn)​

Geschreven voor

Instelling
Studie
Vak

Documentinformatie

Geüpload op
16 november 2025
Aantal pagina's
8
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

€8,99
Krijg toegang tot het volledige document:

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

Maak kennis met de verkoper
Seller avatar
06shyun1211

Maak kennis met de verkoper

Seller avatar
06shyun1211 University of British Columbia
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
1
Lid sinds
4 maanden
Aantal volgers
0
Documenten
8
Laatst verkocht
3 weken geleden

0,0

0 beoordelingen

5
0
4
0
3
0
2
0
1
0

Populaire documenten

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Veelgestelde vragen