Squares of a Sorted Array Solutions in PythonNumber 977Difficulty EasyAcceptance 72.2%Link LeetCodeOther languages C++, GoSolutionsPython solution by haoel/leetcodedef sortedSquares(self, A): return list(sorted([a ** 2 for a in A]))def sortedSquares(self, A): return list(sorted([a ** 2 for a in A]))