Finding an Influencer in a Binary Matrix using Python
Given an X by Y array consisting of 1s and 0s, where the X-axis represents “influences” and 1 indicates that the corresponding element in X influences the corresponding element in Y, we want to determine whether an “influencer” exists in the array. An “influencer” is defined as someone who influences all other members in the

