
Given an integer array nums, return the number of AND triples .
An AND triple is a triple of indices (i, j, k) such that:
0 <= i < nums.length
0 <= j < nums.length
0 <= k < nums.length
nums[i] & nums[j] & nums[k] == 0 , where & represents the bitwise-AND operator.
1 <= nums.length <= 10000 <= nums[i] < 2 ^16