일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- 2018 KAKAO BLIND RECRUITMENT
- 2981
- javascript
- 소수
- applicationeventpublisher
- Spring
- 문자열
- HTTP
- algorithm
- 프로그래머스
- spring security
- counting elements
- error
- 알고리즘
- java
- 파이썬
- springboot
- Dijkstra
- 탐욕법
- codility
- 라이브템플릿
- 최단경로
- BFS
- 백준
- brute force
- Greedy
- 코딩테스트
- API
- beandefinitionstoreexception
- Today
- Total
목록Python (2)
Altiora Petamus
최대공약수 # new in version python 3.5 import math math.gcd(6, 8) # 2 최소공배수 def lcm(a, b): return a * b // gcd(a, b) python 3.9 버전부터는 math에 최소공배수 함수가 추가되었다. # new in version 3.9 import math math.lcm(15, 25) # 75 Reference math — Mathematical functions — Python 3.9.5 documentation math — Mathematical functions This module provides access to the mathematical functions defined by the C standard. These f..
재귀함수 테스트를 하고 있던 와중 몰랐던 사항을 알게 되어 정리해둔다. result = 1 i = 1 def multifly(result): if i == 10: return result i += 1 result *= i return multifly(result) print(multifly(result)) 위의 코드를 실행시키면 문제없이 실행될 것 같지만 다음과 같은 에러를 만나게 된다 UnboundLocalError: local variable 'i' referenced before assignment 변수를 할당하기 전에 로컬변수를 참조하고 있어서 발생하는 에러인데, 나는 상단에 이미 i 로 값을 할당해주었는데 이게 무슨 소리일까? 이유는 다음과 같다. 파이썬의 모든 변수는 지역변수로 설정되기 때문에..