<p>You are given a 2D integer array <code>ranges</code> and two integers <code>left</code> and <code>right</code>. Each <code>ranges[i] = [start<sub>i</sub>, end<sub>i</sub>]</code> represents an <strong>inclusive</strong> interval between <code>start<sub>i</sub></code> and <code>end<sub>i</sub></code>.</p>
<p>Return <code>true</code><em>if each integer in the inclusive range</em><code>[left, right]</code><em>is covered by <strong>at least one</strong> interval in</em><code>ranges</code>. Return <code>false</code><em>otherwise</em>.</p>
<p>An integer <code>x</code> is covered by an interval <code>ranges[i] = [start<sub>i</sub>, end<sub>i</sub>]</code> if <code>start<sub>i</sub><= x <= end<sub>i</sub></code>.</p>