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