예제 #1
0
def test_5_true(sol: Solution, ):
    assert sol.judge_square_sum(5) == True
예제 #2
0
def test_999999999_false(sol: Solution, ):
    assert sol.judge_square_sum(999999999) == False
예제 #3
0
def test_27_false(sol: Solution, ):
    assert sol.judge_square_sum(27) == False
예제 #4
0
def test_3_false(sol: Solution, ):
    assert sol.judge_square_sum(3) == False
예제 #5
0
def test_349_true(sol: Solution, ):
    assert sol.judge_square_sum(349) == True