Alasdair <[EMAIL PROTECTED]> writes: > What is the best way of finding a ceiling of a quotient of arbitrary sized > integers?
ceiling(a/b) = (a+b-1)//b -- http://mail.python.org/mailman/listinfo/python-list
Alasdair <[EMAIL PROTECTED]> writes: > What is the best way of finding a ceiling of a quotient of arbitrary sized > integers?
ceiling(a/b) = (a+b-1)//b -- http://mail.python.org/mailman/listinfo/python-list