Welcome to DrRacket, version 6.3 [3m]. Language: Pretty Big; memory limit: 128 MB. Loaded file:prog1v2016.rkt ---------------------- Testing Part1 Testing lists: x=(1 2 3 4 5 6 7 8 9 10) y=(((a) b) (c d (d (f g) h)) i) steamroller y: (a b c d d f g h i) ndelete x 3: (1 2 4 5 7 8 10) deep-member 'f y: #t Some testing lists: z=(a f c d f g e g h e g e e) p=(1 3 5 7 9) q=(2 4 6 8 10) splitter z: ((a f c d f g e) (g h e g e e)) merge p q: (1 2 3 4 5 6 7 8 9 10) mymergesort z: (a c d e e e e f f g g g h) ---------------------- TESTING FN-MAKER Testing with the example mult-sum-three fn with args 1 2 3: 18 ---------------------- Testing BATTLESHIP! Here is the test ocean: ((B B B - A A A A -) (- - - - - - - - -) (- - - - - - - - -) (- - - - - - - - -) (- - - - - - - - -) (- - - - - - D D -)) 'n TESTING MARKCHAR 3 5 'X ((B B B - A A A A -) (- - - - - - - - -) (- - - - X - - - -) (- - - - - - - - -) (- - - - - - - - -) (- - - - - - D D -)) Now bombing 1 6 for player KAAABOOMM. It's a hit! Now bombing 6 9 for player sploosh! Dang! Missed like a loser! Here is the ocean now: ((B B B - A a A A -) (- - - - - - - - -) (- - - - - - - - -) (- - - - - - - - -) (- - - - - - - - -) (- - - - - - D D o)) End Testing! >