
Broken Window
You have to restore the broken window glass.
You are given a list of lists as input values. Each list of integers represents a missing piece. It always has a horizontal base, which forms the upper or lower side of the window. Each integer represents the height from the base and is a value measured at equal intervals from the left edge. Therefore, the length of the list represents the width.
The answer should be returned in the two lists (the upper list and lower list in that order).
- In the output each piece is represented in the order given as input (starting with 0).
- The bases of the pieces in the same list must always be adjacent to each other.
- (In other words, one piece doesn't form both the upper and lower side of the window.)
- It is not necessary to consider turning over piece.

Example:
broken_window([[1, 0], [1, 0]] == ([0], [1]) # or ([1], [0]) broken_window([[4, 0], [0, 1, 4, 0], [3, 0], [0, 3, 4, 1]] == ([1, 2], [0, 3]) # or ([3, 0], [2, 1])
Input: The pieces of the broken window (list of lists of integers).
Output: The list of top pieces and list of bottom pieces (both are lists of integers).
Precondition:
- 2 ≤ len(input)
- 2 ≤ len(piece)
- 1 ≤ width of window ≤ 20
- 1 ≤ height of window ≤ 18
CheckiO Extensions allow you to use local files to solve missions. More info in a blog post.
In order to install CheckiO client you'll need installed Python (version at least 3.8)
Install CheckiO Client first:
pip3 install checkio_client
Configure your tool
checkio --domain=py config --key=
Sync solutions into your local folder
checkio sync
(in beta testing) Launch local server so your browser can use it and sync solution between local file end extension on the fly. (doesn't work for safari)
checkio serv -d
Alternatevly, you can install Chrome extension or FF addon
checkio install-plugin
checkio install-plugin --ff
checkio install-plugin --chromium
Read more here about other functionality that the checkio client provides. Feel free to submit an issue in case of any difficulties.
Welcome to Pair Programming! Engage in real-time collaboration on coding projects by starting a session and sharing the provided unique URL with friends or colleagues. This feature is perfect for joint project development, debugging, or learning new skills together. Simply click 'Start Session' to begin your collaborative coding journey!
You are trying to join a pair programming session that has not started yet.
Please wait for the session creator to join.
It looks like the creator of the pair programming session closed the editor window.
It might happen accidentally, so that you can wait for reconnection.