Single sell stock

Descripción

Fichas sobre Single sell stock, creado por Suhas S el 12/02/2018.
Suhas S
Fichas por Suhas S, actualizado hace más de 1 año
Suhas S
Creado por Suhas S hace casi 7 años
1
0

Resumen del Recurso

Pregunta Respuesta
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)
Mostrar resumen completo Ocultar resumen completo

Similar

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
Esquema resumen de la Prehistoria
Francisco Ayén
Estructura atómica. Modelos y Teorías
Jean Paul Arango
Historia del Consejo de Normas Internaciones de Contabilidad
Karime Toledo Estudillo