Contents
contained_power()
Given integers n, d, returns the integer m such that d**m divides n but d**(m+1) does not divide n.
n (int) – Integer.
int
d (int) – Integer.
Integer, the maximum power of d that divides n.