본문 바로가기

Python

[Python] 중복된 숫자 개수, list.count(), list.sort()

문제 설명

정수가 담긴 배열 array와 정수 n이 매개변수로 주어질 때, array에 n이 몇 개 있는지를 return 하도록 solution 함수를 완성해 보세요.

 

list.count()

  • list.count(value) 정의
    • The count() method returns the number of elements with the specified value.
      count() 메소드는 숫자 요소를 리턴해 주는데, 어떤 숫자 요소? 지정된 값을 가진 요소를 리턴해 준다.
  • 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
  • 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

 

반응형