A game of Spelling Bee must track the available letters and the partial word ;; that the player has entered. Design data called World that holds ;; this data, and design a function called world->image that displays a World as ;; an image. You can produce any image that you like, but it should clearly show ;; both the available letters and the partial word. ;; Note: The final step of this homework has you revise the data definition for ;; World. We recommend completing this step before the revision. However, we ;; recommend you read the whole assignment first so that you can understand ;; the revision that you will have to do. ;; [TODO] Data design recipe
A game of Spelling Bee must track the available letters and the partial word
;; that the player has entered. Design data called World that holds
;; this data, and design a function called world->image that displays a World as
;; an image. You can produce any image that you like, but it should clearly show
;; both the available letters and the partial word.
;; Note: The final step of this homework has you revise the data definition for
;; World. We recommend completing this step before the revision. However, we
;; recommend you read the whole assignment first so that you can understand
;; the revision that you will have to do.
;; [TODO] Data design recipe
;;
;; [TODO] Function design recipe
Trending now
This is a popular solution!
Step by step
Solved in 2 steps