Single sell stock

Beschreibung

Karteikarten am Single sell stock, erstellt von Suhas S am 12/02/2018.
Suhas S
Karteikarten von Suhas S, aktualisiert more than 1 year ago
Suhas S
Erstellt von Suhas S vor mehr als 6 Jahre
0
0

Zusammenfassung der Ressource

Frage Antworten
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)
Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

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
Spanisch Einstufungstest Niveau B1.2
SprachschuleAktiv
Business-Englisch - Präsentieren
Antonia C
Vetie: Fleisch 2019 Matrikel 14
Johanna Tr