Beispiel #1
0
def test_ten_power_gcd_5():
    """Checks ten_power_gcd() on a couple of integers."""
    assert ten_power_gcd(21000, 400) == 100
Beispiel #2
0
def test_ten_power_gcd_3():
    """Checks ten_power_gcd() on a couple of integers."""
    assert ten_power_gcd(10, 10) == 10
Beispiel #3
0
def test_ten_power_gcd_4():
    """Checks ten_power_gcd() on a couple of integers."""
    assert ten_power_gcd(200, 50) == 10
Beispiel #4
0
def test_ten_power_gcd_1():
    """Checks ten_power_gcd() on a couple of integers."""
    assert ten_power_gcd(3, 4) == 1