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
Browse Source
Create Volume of a Cuboid.py
PythonCoder8
3 years ago
parent
bd2ef83b12
commit
208176a69f
1 changed files
with
2 additions
and
0 deletions
Unified View
Show Diff Stats
2
0
8 kyu/Volume of a Cuboid/Volume of a Cuboid.py
+ 2
- 0
8 kyu/Volume of a Cuboid/Volume of a Cuboid.py
View File
@@ -0,0 +1,2 @@
+def getVolumeOfCuboid(length, width, height):
+ return length * width * height