This website works better with JavaScript
Home
Explore
Help
Sign In
pythoncoder8
/
code-wars
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
43adb238fa
Branches
Tags
main
code-wars
/
8 kyu
/
Volume of a Cuboid
/
Volume of a Cuboid.py
Volume of a Cuboid.py
81 B
History
Raw
1
2
def getVolumeOfCuboid(length, width, height):
return length * width * height