<p>You are given an array of <code>events</code> where <code>events[i] = [startDay<sub>i</sub>, endDay<sub>i</sub>]</code>. Every event <code>i</code> starts at <code>startDay<sub>i</sub></code><sub></sub>and ends at <code>endDay<sub>i</sub></code>.</p>
<p>You can attend an event <code>i</code> at any day <code>d</code> where <code>startTime<sub>i</sub><= d <= endTime<sub>i</sub></code>. You can only attend one event at any time <code>d</code>.</p>
<p>Return <em>the maximum number of events you can attend</em>.</p>