jackpot to Programming@programming.dev · 11 months agowhen is it best to use a recursive function vs a for loopmessage-squaremessage-square49fedilinkarrow-up133arrow-down13
arrow-up130arrow-down1message-squarewhen is it best to use a recursive function vs a for loopjackpot to Programming@programming.dev · 11 months agomessage-square49fedilink
minus-squarecvttsd2si@programming.devlinkfedilinkarrow-up6·edit-211 months agoWhen doing functional programming, you can’t really do loops (because of referential transparency, you can’t update iterators or indices). However, recursion still works.
When doing functional programming, you can’t really do loops (because of referential transparency, you can’t update iterators or indices). However, recursion still works.