;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; CSCI--4150 Introduction to Artificial Intelligence, Fall 2005 ; ; Assignment 2 ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (load "a2code") ; don't copy the code into your file, just load it ; note that an extension is not necessary: leave it this way ; ; Problem 1 ; (define (odd-numbers j k) 'your-procedure-here) ; ; Problem 2: Exercise 10 in Section 9.5 ; (define (all-greater n Lst) 'your-procedure-here) ; ; Problem 3: Exercise 4 in Section 9.5 ; (define (sum-adjacent-elements Lst) 'your-procedure-here) ; ; Problem 4: Exercise 4 in Section 9.5 ; (define (pascal-row n) 'your-procedure-here) ; ; Problem 5: Exercise 16 in Section 9.5 ; (define (flatten Lst) 'your-procedure-here) ; ; Problem 6 ; (define (corresponding-min values Lst) 'your-procedure-here) ; ; Problem 7 ; (define (valid-right? sbp block) 'your-procedure-here) ; ; Problem 8 ; (define (empty:right-neighbors sbp) 'your-procedure-here) ; ; Problem 9 ; (define (block-distance sbp-a sbp-b block) 'your-procedure-here)