Single sell stock

Descrição

FlashCards sobre Single sell stock, criado por Suhas S em 12-02-2018.
Suhas S
FlashCards por Suhas S, atualizado more than 1 year ago
Suhas S
Criado por Suhas S mais de 6 anos atrás
0
0

Resumo de Recurso

Questão Responda
sell single stock class Solution { public int maxProfit(int[] prices) { int minimumPrice = Integer.MAX_VALUE; int profit = 0; for(int i = 0;i < prices.length; i++){ profit = Math.max(prices[i] - minimumPrice,profit); minimumPrice = Math.min(minimumPrice, prices[i]); } return profit; } }
Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit. Input: [7, 1, 5, 3, 6, 4] Output: 5 max. difference = 6-1 = 5 (not 7-1 = 6, as selling price needs to be larger than buying price)

Semelhante

PHP Exam One
tr.badhan
Array Programs
Subash M
Array
alim586
Array
Tate Johnson
Test Card
Nick Wu
Given an array of integers, rotate the array by 'N' elements.
Suhas S
Remove Duplicates from Sorted Array
Suhas S
Prática para o TOEFL
GoConqr suporte .
Química Orgânica (Part. I)
lorena dorea
Normas Regulamentadoras de Segurança e Saúde do Trabalho (NR)
Edson Baal