<p>You are participating in an online chess tournament. There is a chess round that starts every <code>15</code> minutes. The first round of the day starts at <code>00:00</code>, and after every <code>15</code> minutes, a new round starts.</p>
<ul>
<li>For example, the second round starts at <code>00:15</code>, the fourth round starts at <code>00:45</code>, and the seventh round starts at <code>01:30</code>.</li>
</ul>
<p>You are given two strings <code>loginTime</code> and <code>logoutTime</code> where:</p>
<ul>
<li><code>loginTime</code> is the time you will login to the game, and</li>
<li><code>logoutTime</code> is the time you will logout from the game.</li>
</ul>
<p>If <code>logoutTime</code> is <strong>earlier</strong> than <code>loginTime</code>, this means you have played from <code>loginTime</code> to midnight and from midnight to <code>logoutTime</code>.</p>
<p>Return <em>the number of full chess rounds you have played in the tournament</em>.</p>
<p><strong>Note:</strong> All the given times follow the 24-hour clock. That means the first round of the day starts at <code>00:00</code> and the last round of the day starts at <code>23:45</code>.</p>