
Largest Rectangle in a Histogram
"Your power to choose can never be taken from you.
It can be neglected and it can be ignored.
But if used, it can make all the difference."
― Steve Goodier
You have a histogram. Try to find the size of the biggest rectangle you can build out of the histogram bars.
Input: An array of all rectangles’ heights on the histogram.
Output: Area of the biggest rectangle.
Example:
largestHistogram([5]) == 5 largestHistogram([5, 3]) == 6 largestHistogram([1, 1, 4, 1]) == 4 largestHistogram([1, 1, 3, 1]) == 4 largestHistogram([2, 1, 4, 5, 1, 3, 3]) == 8
How it is used: There is no way the solution you come up with will be of any use in real life. So, just have fun here!
Precondition:
0 < len(data) < 1000
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=js 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.