(int ele)
| 18 | |
| 19 | class Solution { |
| 20 | public int getValue(int ele){ |
| 21 | if(ele < 0){ |
| 22 | return 100000 - ele; |
| 23 | } |
| 24 | return ele; |
| 25 | } |
| 26 | public List<Boolean> checkArithmeticSubarrays(int[] nums, int[] l, int[] r) { |
| 27 | int m = l.length; |
| 28 | ArrayList<Boolean> res = new ArrayList<>(); |
no outgoing calls
no test coverage detected