lin9178618872

Results 2 issues of lin9178618872

the code I cannot run is from typing import List from collections import Counter def raw_majority_vote(labels: List[str]) -> str: votes = Counter(labels) winner, _ = votes.most_common(1)[0] return winner assert raw_majority_vote(['a',...