You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The transactions_id column uniquely identifies each row in this table.
30
-
Each row of this table contains the transaction id, amount and transaction date.
29
+
transactions_id 列唯一标识了表中的每一行。
30
+
这张表的每一行包含交易 id,金额总和和交易日期。
31
31
</pre>
32
32
33
-
<p>Write a solution to find the <strong>sum of amounts</strong> for <strong>odd</strong> and <strong>even</strong> transactions for each day. If there are no odd or even transactions for a specific date, display as <code>0</code>.</p>
<p>Given an array <code>nums</code>, you have to get the <strong>maximum</strong> score starting from index 0 and <strong>hopping</strong> until you reach the last element of the array.</p>
<p>In each <strong>hop</strong>, you can jump from index <code>i</code> to an index <code>j > i</code>, and you get a <strong>score</strong> of <code>(j - i) * nums[j]</code>.</p>
0 commit comments