728x90
반응형
모든 문제는 Python으로 풀이했습니다 ❕
오늘의 문제 4개는 아래와 같습니다 ⤵️
1. 직사각형 넓이 구하기
🔗 문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120860
⌨️ 작성한 코드 (Python)
def solution(dots):
dots.sort()
return (dots[2][0] - dots[0][0]) * (dots[1][1] - dots[2][1])
2. 캐릭터의 좌표
🔗 문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120861
⌨️ 작성한 코드 (Python)
def solution(keyinput, board):
answer = [0, 0]
for i in range(len(keyinput)):
if keyinput[i] == 'left' and answer[0] > -(board[0]//2):
answer[0] -= 1
elif keyinput[i] == 'right' and answer[0] < board[0]//2:
answer[0] += 1
elif keyinput[i] == 'up' and answer[1] < board[1]//2:
answer[1] += 1
elif keyinput[i] == 'down' and answer[1] > -(board[1]//2):
answer[1] -= 1
return answer
3. 최댓값 만들기 (2)
🔗 문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120862
⌨️ 작성한 코드 (Python)
def solution(numbers):
numbers.sort()
return max(numbers[0] * numbers[1], numbers[-1] * numbers[-2])
4. 다항식 더하기
🔗 문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120863
⌨️ 작성한 코드 (Python)
def solution(polynomial):
xcnt = 0
const = 0
for c in polynomial.split(' + '):
if c.isdigit():
const += int(c)
else:
xcnt = xcnt+1 if c == 'x' else xcnt + int(c[:-1])
if xcnt == 0:
return str(const)
elif xcnt == 1:
return 'x + ' + str(const) if const != 0 else 'x'
else:
return f'{xcnt}x + {const}' if const != 0 else f'{xcnt}x'
코드에 대해 이해 안 가거나
궁금한 내용이 있으신 분은 댓글 남겨주세요!
감사합니다 🤓
728x90
반응형