From 0c112485646401b2af2033fb7d9fdd34444b2b30 Mon Sep 17 00:00:00 2001 From: Zewasik <89100777+Zewasik@users.noreply.github.com> Date: Thu, 2 Jun 2022 21:02:57 +0300 Subject: [PATCH] Fix problem with list --- subjects/does_it_fit/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/subjects/does_it_fit/README.md b/subjects/does_it_fit/README.md index 495f3443..2ed2e4b0 100644 --- a/subjects/does_it_fit/README.md +++ b/subjects/does_it_fit/README.md @@ -23,17 +23,17 @@ Create `volume_fit`. It should return `true` if the geometric volume can fit ins - `objects`: the type of geometric volume. - `times`: the number of geometric volumes to fit inside the box. - `a`: size of dimension for: - - `side` of a `Cube` - - `radius` of a `Sphere` - - `base_area` of a triangular `Pyramid` - - `side_a` of a `Parallelepiped` - - `base_radius` of a `Cone` - - `b`: size dimension for: - - `height` of the triangular `Pyramid` - - `side_b` of a `Parallelepiped` - - `height` of the `Cone` - - `c`: size dimension for: - - `side_c` of a `Parallelepiped` + - `side` of a `Cube` + - `radius` of a `Sphere` + - `base_area` of a triangular `Pyramid` + - `side_a` of a `Parallelepiped` + - `base_radius` of a `Cone` +- `b`: size dimension for: + - `height` of the triangular `Pyramid` + - `side_b` of a `Parallelepiped` + - `height` of the `Cone` +- `c`: size dimension for: + - `side_c` of a `Parallelepiped` ### Expected Functions