kyu_8.surface_area_and_volume_of_box package

Submodules

kyu_8.surface_area_and_volume_of_box.get_size module

Solution for -> Surface Area and Volume of a Box.

Created by Egor Kostan. GitHub: https://github.com/ikostan

kyu_8.surface_area_and_volume_of_box.get_size.get_size(w: int, h: int, d: int) list[source]

Return the total surface area and volume of a box as an array.

Parameters:
  • w

  • h

  • d

Returns:

kyu_8.surface_area_and_volume_of_box.test_get_size module

Test for -> Surface Area and Volume of a Box.

Created by Egor Kostan. GitHub: https://github.com/ikostan

class kyu_8.surface_area_and_volume_of_box.test_get_size.GetSizeTestCase(methodName='runTest')[source]

Bases: TestCase

Testing get_size function.

_classSetupFailed = False
_class_cleanups = []
test_get_size()[source]

Testing get_size function with various inputs.

Returns:

Module contents

Surface Area and Volume of a Box.