We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
SeparateByEqualParts()
Example:
SeparateByEqualParts(elements=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], parts=2) -> [[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]] SeparateByEqualParts(elements=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], parts=2, union=True) -> [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9, 10]] SeparateByEqualParts(elements=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], parts=2, union=False) -> [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9], [10]]]
The text was updated successfully, but these errors were encountered:
#106 api-doc was updated
2fc61f2
#106 changelogs were updated for method SeparateByEqualParts()
5b54f1c
#106 unit-test forSeparateByEqualParts() method was implemented
efe0949
#106 SeparateByEqualParts() method was implemented
325b668
Implemented since v 1.6.dev132
Debug build: https://app.travis-ci.com/github/Tim55667757/TKSBrokerAPI/builds/258459235 Artefact in PyPI for testing: https://pypi.org/project/tksbrokerapi/1.6.dev132/
Sorry, something went wrong.
#106 Negative tests were added for SeparateByEqualParts() method
db893a0
#106 some another negative tests were added
798579a
Tim55667757
No branches or pull requests
Example:
The text was updated successfully, but these errors were encountered: