Question
USING PYTHON Programming 3!!! Do not use many built in functions, mainly loops, and list manipulations (i.e. slicing etc)
We have a list of integers, representing the yearly profit (in kilo euro) of n businesses (shops) along the high street in the City centre. This time we are being given 4 (four) businesses ("for free"), that neighbour one another. The problem is to calculate which 4 we should take (that neighbour each other) to maximize our yearly profit.
Given these numbers, write a PYTHON program to calculate that 4 we should take. As in-
If the profits were 52, 67, -8, 43, -20 we should take the first 4 businesses.
If the profits were -20, 36, -10, -30, 3, 21 we would take no business (this is also allowed).