Multiplication algorithm: Difference between revisions

Content deleted Content added
Citation bot (talk | contribs)
m Alter: journal, title. Add: title-link, ___location, doi. Removed URL that duplicated unique identifier. Removed accessdate with no specified URL. Removed parameters. | You can use this bot yourself. Report bugs here. | Headbomb
Example: product[b_i + p] "" remove this + """= carry / here we should remove the plus "+" because if we put it, all carries it will add it on the last digit
Line 64:
carry = product[a_i + b_i - 1] / base
product[a_i + b_i - 1] = product[a_i + b_i - 1] mod base
product[b_i + p] += carry // last digit comes from final carry
return product
</source>