Example #1
0
def main():
    lintAll()  # check style rules
    testAll(
        testFabricYards,
        testFabricExcess,
        testIsRightTriangle,
        testColorBlender,
        # testBonusFindIntRootsOfCubic
    )
Example #2
0
def main():
    lintAll()  # check style rules
    testAll(
        testDistance,
        testCirclesIntersect,
        testGetInRange,
        testEggCartons,
        testPascalsTriangleValue,
    )
Example #3
0
def main():
    lintAll() # check style rules
    testAll(
        testNearestOdd,
        testRectanglesOverlap,
        testIsPerfectSquare,
        testGetKthDigit,
        testSetKthDigit,
        testRiverCruiseUpstreamTime
    )
Example #4
0
def main():
    lintAll()  # check style rules
    testAll(
        testIsFactor,
        testIsMultiple,
        testIsLegalTriangle,
        testTriangleArea,
        testTriangleAreaByCoordinates,
        testNthFibonacciNumber,
        testIsEvenPositiveInt,
        testNearestBusStop,
        testLineIntersection,
        testThreeLinesArea,
        testNumberOfPoolBalls,
        testNumberOfPoolBallRows,
    )