문제 설명
정수가 담긴 배열 array와 정수 n이 매개변수로 주어질 때, array에 n이 몇 개 있는지를 return 하도록 solution 함수를 완성해 보세요.
list.count()
- list.count(value) 정의
- The count() method returns the number of elements with the specified value.
count() 메소드는 숫자 요소를 리턴해 주는데, 어떤 숫자 요소? 지정된 값을 가진 요소를 리턴해 준다.
- The count() method returns the number of elements with the specified value.
- array.count(n)
- array 배열에서 n 값을 가진 요소가 몇 개인지 리턴해 준다.
- 참고 자료: https://www.w3schools.com/python/ref_list_count.asp
W3Schools.com
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
참고 사항 list.sort()
- list.sort(reverse=True|False, key=myFunc) 정의
- The sort() method sorts the list ascending by default.
sort() 메소드는 list를 기본적으로 오름차순 정렬해 준다. - 정렬된 결과는 다시 list로 저장되고, None을 반환한다.
a = list.sort() return a // None
- The sort() method sorts the list ascending by default.
- Parameter Description
reverse | Optional. reverse=True will sort the list descending. Default is reverse=False True: 내림차순 |
key | Optional. A function to specify the sorting criteria(s) 특정한 정렬 기준을 지정한다. |
W3Schools.com
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
https://github.com/seonmin5/codingtest_Python
GitHub - seonmin5/codingtest_Python
Contribute to seonmin5/codingtest_Python development by creating an account on GitHub.
github.com
반응형
'Python' 카테고리의 다른 글
[Python] 개미 군단, (hp//5) + ((hp%5)//3) + ((hp%5)%3) (1) | 2024.07.15 |
---|---|
[Python] 옷가게 할인 받기, math.floor(), int() (0) | 2024.07.12 |
[Python] 피자 나눠 먹기(3) math.ceil, ((n-1) // slice) +1 (0) | 2024.07.10 |
[Python] Lv.0 코딩 기초 트레이닝 - 배열 만들기 5, 부분 문자열 이어붙여 문자열 만들기 (0) | 2024.06.13 |
[Python] Lv.0 코딩 기초 트레이닝 - 글자 이어 붙여 문자열 만들기, 9로 나눈 나머지, 문자열 여러 번 뒤집기 (0) | 2024.06.12 |