<p>Given an array of integers <code>nums</code> and a positive integer <code>k</code>, check whether it is possible to divide this array into sets of <code>k</code> consecutive numbers.</p>
<p>Return <code>true</code><em>if it is possible</em>.<strong></strong>Otherwise, return <code>false</code>.</p>
<strong>Note:</strong> This question is the same as 846: <ahref="https://leetcode.com/problems/hand-of-straights/"target="_blank">https://leetcode.com/problems/hand-of-straights/</a>