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 |
Tags
- datascience
- Kubernetes
- NaverAItech
- NLP
- 완전탐색
- PytorchLightning
- 네이버AItech
- GIT
- pytorch
- FastAPI
- leetcode
- torchserve
- DeepLearning
- 알고리즘
- 코딩테스트
- pep8
- github
- docker
- python
- Kaggle
- 프로그래머스
- vscode
- FDS
- wandb
- GCP
- autoencoder
- 백준
- Matplotlib
- rnn
- GitHub Action
Archives
- Today
- Total
Sangmun
배수와 약수 본문
1. 최대공약수를 구하는 알고리즘 (유클리드 호제법)
# not using math library
a = 48
b = 32
while a % b != 0:
tmp = a % b
a = b
b = tmp
print(b) # print 16
# using math library
a = 48
b = 32
import math
print(math.gcd(a,b)) # print 16
2. 최소공배수를 구하는 알고리즘
# not using math library
a = 48
b = 32
while a % b != 0:
tmp = a % b
a = b
b = tmp
print(48*32//b) # print 96
# using math library
a = 48
b = 32
import math
print(math.lcm(a,b)) # print 96
3. 약수를 전부 구하는 알고리즘
a = 48
dividor_set = set()
for i in range(1,int(a**1/2)+1):
if a % i == 0:
dividor_set.add(a//i)
dividor_set.add(i)
print(sorted(dividor_set))
# print [1, 2, 3, 4, 6, 8, 12, 16, 24, 48]
4. 이항 계수를 구하는 알고리즘
# 10C2
import math
a = 10
b = 2
print(math.factorial(a)//(math.factorial(a-b)*math.factorial(b)))
# print 45
'알고리즘 > 알고리즘(초급)' 카테고리의 다른 글
python 으로 stack 직접 구현하기 (0) | 2022.12.04 |
---|---|
투포인터 (0) | 2022.11.23 |
백트래킹을 이용한 부분 집합을 구하는 알고리즘 (0) | 2022.11.21 |
유클리드 호제법(최대공약수), 최소공배수 (0) | 2022.11.18 |
에라토스테네스의 체 (0) | 2022.11.17 |
Comments