Light Mode
Dark Mode
Best Stock

bestStock in the task:

bestStock({
    'CAC': 10.0,
    'ATX': 390.2,
    'WIG': 1.2
}) == 'ATX'
bestStock({
    'CAC': 91.1,
    'ATX': 1.01,
    'TASI': 120.9
}) == 'TASI'

sumTwo in the solve:

function sumTwo(a, b) {
    // sums two passed arguments

    // your code here
    return 0;
}
Created: Dec. 12, 2018, 11:21 a.m.
Updated: Dec. 12, 2018, 7:41 p.m.
1
17
User avatar
SaintDron