<p>A bus has <code>n</code> stops numbered from <code>0</code> to <code>n - 1</code> that form a circle. We know the distance between all pairs of neighboring stops where <code>distance[i]</code> is the distance between the stops number <code>i</code> and <code>(i + 1) % n</code>.</p>
<p>The bus goes along both directions i.e. clockwise and counterclockwise.</p>
<p>Return the shortest distance between the given <code>start</code> and <code>destination</code> stops.</p>