11 lines
198 B
Python
11 lines
198 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# TEST_METADATA: {
|
|
# "expected_status": 200,
|
|
# "expected_result": "4.0",
|
|
# "allowed_imports": ["math"]
|
|
# }
|
|
# Standard
|
|
import math
|
|
|
|
result = math.sqrt(16)
|