Documentation
API Reference
What's New?
About Us
Group sequence into list example -> test_list = [1, 2, 3, 8, 15, 23, 24, 25, 10, 11, 13, 15] sequence_list = [[1, 2, 3], [23, 24, 25], [10, 11]] :type list_of_integers: :param list_of_integers: list of integers :return: list of grouped integers