So i wrote a method for an assignment, and I think it's right but I just don't know exactly what it does.
I know what it does, in a step-by-step way but what is its like...recognizable chore?Code:public static String huh(Shed[] sheds){
int start = 0;
for(int j = 1; j < sheds.length; j++)
if (sheds[j].size < sheds[start].size)
start = j;
return (sheds[start].owner);
}

