Exemplo n.º 1
0
Arquivo: testuj.py Projeto: Ciemny/PSI
def checkAdd(fun, args):
    A = solution.strange_number(args[0])
    B = solution.strange_number(args[1])
    return str(A+B)
Exemplo n.º 2
0
Arquivo: testuj.py Projeto: Ciemny/PSI
def checkNegative(fun, args):
    A = solution.strange_number(args)
    return A[-1]
Exemplo n.º 3
0
Arquivo: testuj.py Projeto: Ciemny/PSI
def checkStr(fun, args):
    return str(solution.strange_number(args))
Exemplo n.º 4
0
Arquivo: testuj.py Projeto: Ciemny/PSI
def checkPositive(fun, args):
    A = solution.strange_number(args)
    return A[1]