Implement pagination logic to extract a slice from a list with limit and offset.
Constraints
Example
>>> limit_offset_query([1,2,3,4,5], 2, 1) [2, 3] >>> limit_offset_query([1,2,3], 5, 0) [1, 2, 3] >>> limit_offset_query([1,2,3], 2, 2) [3] >>> limit_offset_query([1,2,3], 2, 5) []
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints