Logic
Mathematics
creating code that finds out the volume of the cube from the data (x,y,z)
creating code that finds out the volume of the cube from the data (x,y,z)
def kube(x, y, z):
#your code here
return 0
import codewars_test as test
# TODO Write tests
from solution import kube
# test.assert_equals(actual, expected, [optional] message)
@test.describe("Example")
def test_group():
@test.it("test case")
def test_case():
test.assert_equals(kube(7, 9, 4), 252)
test.assert_equals(kube(5, 12, 7), 420)
test.assert_equals(kube(3, 7, 49), 1029)