Good day.
There is a simple task: there is a huge array of strings of 64 characters each, from time to time it is necessary to check whether there is an input string in it. The problem is complicated by the fact that storing this array somewhere is not possible. But there is an opportunity to count once, say, some hash of this array or something. Please tell me whether it is possible to create any "convolution" of this array, by which you can check whether there was any element in the array, by which this "convolution" was counted. This "convolution" must be much smaller than the original array. The data in the array is random, the source data need not be restored, any error is allowed <100%
Is there a solution to such problems?