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
- AlexNet
- 체비셰프부등식
- 젠센부등식
- DeepLearning
- ImageCaptioning
- PRML
- DeepLearing
- tensor
- pytorch
- Bayes'Rule
- SWEA #Python #알고리즘
- GAN
- TorchHub
- bayesian
- Bayes'Theorem
- CycleGAN
- 머신러닝
- Python
- bayes
- NeuralTalk
- 마코프부등식
- ResNet
- MachineLearning
Archives
- Today
- Total
euphoriaO-O
[Python][프로그래머스] 수식 최대화 본문
#2020카카오인턴십 문제
from re import split
from itertools import permutations
lst = permutations(['*','+','-']) # 연산자 순열
def solution(expression):
answer = 0
for l in lst:
num = split('[*+-]',expression) # 숫자 배열
opr = split('[0-9]+',expression)[1:-1] # 연산자 배열
# stack을 이용해 우선 연산자 계산
for x in l[:2]:
while x in opr:
idx = opr.index(x)
tmp = num[idx]+opr[idx]+num[idx+1]
num[idx] = str(eval(tmp))
num.pop(idx+1)
opr.pop(idx)
# 마지막 계산
tmp = ''
for i in range(len(opr)):
tmp += num[i] + opr[i]
tmp = abs(eval(tmp + num[-1]))
# 최종 값(절댓값)이 가장 큰 것을 찾음
if tmp > answer:
answer = tmp
return answer
'Programming > Algorithm' 카테고리의 다른 글
[Python][프로그래머스] 보석 쇼핑 (0) | 2020.07.11 |
---|---|
[Python][프로그래머스] 키패드 누르기 (0) | 2020.07.11 |
[Python] SWEA 1234 비밀번호 (0) | 2020.07.11 |
Comments