Maximum number of trailing zeros in the product of the subsets of size k
Given an array of size n and a positive integer k, find the maximum number of trailing zeros in the product of the subsets of size k.Examples: Input : arr = {50, 4, 20} k = 2 Output : 3 Here, we have 3 subsets of size 2. [50, 4] has product 200, having 2 zeros at the end, [4, 20] â product 80, havin