kyu_8.well_of_ideas_easy_version package

Submodules

kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version module

Tests for -> Well of Ideas - Easy Version.

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

class kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase(methodName='runTest')[source]

Bases: TestCase

Testing ‘well’ function.

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

If there are no good ideas, as is often the case, return ‘Fail!’.

Returns:

test_well_publish()[source]

If there are one or two good ideas, return ‘Publish!’.

Returns:

test_well_series()[source]

If there are more than 2 return ‘I smell a series!’.

Returns:

kyu_8.well_of_ideas_easy_version.well_of_ideas_easy_version module

Solution for -> Well of Ideas - Easy Version.

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

kyu_8.well_of_ideas_easy_version.well_of_ideas_easy_version.well(x: List[str]) str[source]

‘well’ function.

Parameters:

x – List[str]

Returns:

str

Module contents

Well of Ideas - Easy Version.