Browse Source

Create Volume of a Cuboid.py

PythonCoder8 3 years ago
parent
commit
208176a69f
1 changed files with 2 additions and 0 deletions
  1. 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

@@ -0,0 +1,2 @@
+def getVolumeOfCuboid(length, width, height):
+    return length * width * height