0. 문제
https://leetcode.com/problems/best-time-to-buy-and-sell-stock/submissions/
1. 문제 설명
2. 문제 풀이
가장 저렴하게 구매하기
다.3. 코드
class Solution {
public int maxProfit(int[] prices) {
int buy = Integer.MAX_VALUE;
int profit = 0;
for (int i : prices) {
buy = Math.min(i, buy);
profit = Math.max(profit, i - buy);
}
return profit;
}
}
4. 결과