;;; ;;; CS200 Final ;;; ;;; Name: ______________________________ ;;; ;;; ;;; Time spent working at a computer (running DrScheme) ;;; ;;; Start Stop Time Spent ;;; ;;; ;;; ;;; Total time spent must not exceed 3 hours. ;;; (load "auction.ss") (setup-tables) ;;; Question 5: ; (define (reset-bidbots! item) ; ;;; Insert your code here ; ) ;;; Question 6: ;;; This template is provided as a hint to get started. You ;;; are not required to use it. You may define additional ;;; procedures if you think they will be helpful. ; (define (reevaluate-bidbots item highbidvalue) ; (define (reevaluate-helper bids item highbidvalue) ; ;;; fill in body of reevaluate-helper ; ) ; (reevaluate-helper (get-bids item) item highbidvalue))