Given a list of integers, return a new list containing the square of each number that is strictly positive, using a single list comprehension.
Examples
solve([1, -2, 3, 0, -4, 5]) → [1, 9, 25]solve([-1, -2, -3]) → []solve([2, 4, 6]) → [4, 16, 36]Constraints
for loop body).Sample tests