Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Big-O 예제
- itertools
- 이진 탐색
- 코틀린 시작하기
- matrix-vector product
- matrix fo a linear transformation
- Big Omega
- trivial solution
- NumPy
- 빅오 표기법
- 코틀린 Hello World!
- one-to-one
- Big-Oh 예제
- matrix trnasformations
- linear dependence
- Big Theta
- 빅세타
- recursive algorithms
- Big-Oh notation
- nonhomogeneous linear system
- 알고리즘 분석의 실례
- 빅오메가
- python
- 랜덤 순서 배열
- homogeneous linear system
- solutions of matrix equation
- nontrivial solution
- 일차변환
- 배열 섞기
- 재귀함수
Archives
- Today
- Total
목록reduce (1)
코딩 연습
(파이썬) functools 모듈의 reduce 함수
functools 모듈의 reduce 함수는 다음과 같다. def reduce(function, iterable, initializer=None): it = iter(iterable) if initializer is None: value = next(it) else: value = initializer for element in it: value = function(value, element) return value reduce 함수는 매개 변수로 function, iterable[, initializer] 를 갖는다. function 과 iterable 은 반드시 전달되어야 하고, initializer 는 선택적이라고 보면 된다. 위 코드를 보면 알겠지만 reduce 함수는 다음과 같이 iterable..
Python
2017. 3. 23. 00:51