Here’s the question from a practice exam I’m taking:
Given a list,
x, that has at leastmelements and a list,y, that has at leastnelements, write afunctionwith the headingdef addThem(x, y, m, n)that returns an array that has as it’s firstmelements the firstmelements ofxand as it’s nextnelements the firstnelements ofy.
I don’t even know what an array is, let alone how to approach answering this. My final is in the morning and I’m freaking out. Help?
If I don’t misunderstand the question, it’d be
tell me if I do, I’ll try to fix it.