I am supposed to write a function that multiplies two big numbers which are in two linked lists. I need help figuring out an algorithm that does that the same way you would solve it on pen and paper. here is what i'm thinking of:
I would use a nested for loop to iterate through both lists while multiplying each of the elements but i'm not sure how to handle the carrying situation. I've already implemented a function that adds two linked lists of integers. any input would be appreciated.