Mazdak Farrokhzad edited b) Algorithm.tex  almost 10 years ago

Commit id: c86fb1652ad7102cec1c21e7c21d02fa000ac118

deletions | additions      

       

pow(p, k):  product <- 1  for i in 1..k:  product <- product * p mul(product, i)  return product  mul(x, y):  sum <- 0