Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Such an unbalanced kata:
Fun kata, thank you. Suggest to fix a couple of typos in the description: diametr -> diameter and quadrilaterlas -> quadrilaterals. Also
combinations
is not the best function name in Python because it clashes withitertools.combinations
.i think that i concidered all the possible combinations:
*for triangles:
1.two points on arc and one point on diameter
2.two points on diameter and one point on arc
3.three points on arc
*for quadrilaterals:
1.two points on diameter and two points on arc
2.one point on diameter and three points on arc
3.four points on arc
this passes eleven tests but no more. do i miss out anything?
Just to make it clear: is it OK if a triangle or a quadrilateral is built on points located solely on arc?