Hello nuntius,
Thank you so much for the help! I have no idea why it didn't occur to me that I could use a helper function. I have it all figured out now. Thanks again.
B-rock
Search found 2 matches
- Mon Oct 18, 2010 8:58 am
- Forum: Common Lisp
- Topic: Basic Function Help
- Replies: 3
- Views: 4639
- Sun Oct 17, 2010 7:13 pm
- Forum: Common Lisp
- Topic: Basic Function Help
- Replies: 3
- Views: 4639
Basic Function Help
Hello fellow board members, I have sort of hit a dead end with ideas for a simple function I am trying to write called sumprod. Basically, it finds the sum of the product of two separate lists. So for example: (sumprod '(1 2 3) '(2 3)) --> 12, since (1*2*3) + (2*3) = 12. I know how to find the produ...