Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Solution {
- public int maxProfit(int[] prices) {
- int maxprofit = 0;
- for (int i = 1; i < prices.length; i++) {
- if (prices[i] > prices[i - 1])
- maxprofit += prices[i] - prices[i - 1];
- }
- return maxprofit;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement