728x90
In this mission you should check if all elements in the given list are equal.
Input: List.
Output: Bool.
Example:
all_the_same([1, 1, 1]) == True
all_the_same([1, 2, 1]) == False
all_the_same(['a', 'a', 'a']) == True
all_the_same([]) == True
* 리스트가 모두 같은지 확인해야한다.
* 리스트가 빌 경우에도 True를 리턴한다.
- 풀이
def all_the_same(elements: List[Any]) -> bool:
return len(set(elements)) <=1
반응형
'취미생활 > CheckIO' 카테고리의 다른 글
[checkIO]Home 06.Sort Array by Element Frequency (0) | 2020.02.13 |
---|---|
[checkIO]Home 05.Non-unique Elements (0) | 2020.02.11 |
[checkIO]Home 04.Time Converter (24h to 12h) (0) | 2020.02.11 |
[checkIO]Home 03. The Most Wanted Letter (0) | 2020.02.09 |
[checkIO]Home 02. House Password (0) | 2020.02.09 |