Given an array of N non negative integers and an integer K, return true or false based on if there can be exactly N - 1 elements with value as 0 by performing following action infinite times:
For e.g. arr[] = [1,2,3,4,5], K = 2
If you select index 0, then array becomes [0, 4, 5, 6, 7]