(String[] args)
| 19 | } |
| 20 | |
| 21 | public static void main(String[] args) { |
| 22 | Solution solution = new Solution(); |
| 23 | System.out.println(solution.maxProfit(new int[]{7, 1, 5, 3, 6, 4})); |
| 24 | System.out.println(solution.maxProfit(new int[]{7, 6, 4, 3, 1})); |
| 25 | } |
| 26 | } |