<p>You are given an integer array <code>nums</code>. The <strong>absolute sum</strong> of a subarray <code>[nums<sub>l</sub>, nums<sub>l+1</sub>, ..., nums<sub>r-1</sub>, nums<sub>r</sub>]</code> is <code>abs(nums<sub>l</sub> + nums<sub>l+1</sub> + ... + nums<sub>r-1</sub> + nums<sub>r</sub>)</code>.</p>
<p>Return <em>the <strong>maximum</strong> absolute sum of any <strong>(possibly empty)</strong> subarray of </em><code>nums</code>.</p>
<p>Note that <code>abs(x)</code> is defined as follows:</p>
<ul>
<li>If <code>x</code> is a negative integer, then <code>abs(x) = -x</code>.</li>
<li>If <code>x</code> is a non-negative integer, then <code>abs(x) = x</code>.</li>