Question: Write a recursive Racket function more that takes two lists, xs and ys, as parameters and returns true if xs has more elements than ys

Write a recursive Racket function "more" that takes two lists, xs and ys, as parameters and returns true if xs has more elements than ys and false otherwise. For example (more '(123) '[1 2]) should evaluate to true while (more '[123) (012]) should evaluate to false. Note: Because this problem is supposed to be recursive, you should not call any length functions on your lists (doing so would result in an O(n?) algorithm). Hint similar to the merge example from mergesort, your code should have two base cases: xs empty and ys empty. Save Grading 1 Run T 1 Full Screen code.rkt + New 1 #lang racket (provide more) ; do not change any code above this line. Write your code below it. Test Case 1 Not run ; return true iff xs has more elements than ys 6 (define (more xs ys) NOT RY
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
