Smallest subarray with product divisible by k
Given an array of non-negative numbers, find length of smallest subarray whose product is a multiple of k. Examples : Input : arr[] = {1, 9, 16, 5, 4, 3, 2} k = 720 Output: 3 The smallest subarray is {9, 16, 5} whose product is 720. Input : arr[] = {1, 2, 4, 5, 6} K = 96 Output : No such subarray ex