0996. Number of Squareful Arrays
https://leetcode.com/problems/number-of-squareful-arrays
Description
An array is squareful if the sum of every pair of adjacent elements is a perfect square.
Given an integer array nums, return the number of permutations of nums
that are squareful.
Two permutations perm1
and perm2
are different if there is some index i
such that perm1[i] != perm2[i]
.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 12
0 <= nums[i] <= 109
ac
Last updated