Single sell stock

Description

Flashcards on Single sell stock, created by Suhas S on 12/02/2018.
Suhas S
Flashcards by Suhas S, updated more than 1 year ago
Suhas S
Created by Suhas S over 6 years ago
0
0

Resource summary

Question Answer
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)
Show full summary Hide full summary

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
Biology AQA 3.2.5 Mitosis
evie.daines
AQA Biology B1 Questions
Bella Statham
Specific Topic 7.3 Timber selection
T Andrews