코테 문제 풀이/온코더 oncoder
온코더 레벨2 연산하기
waVwe
2020. 11. 24. 15:53
728x90
반응형
class Solution:
def solution(self, a, b):
return (a**3)+(b**2)
|
cs |
제곱 연산은 **를 사용한다
출처 : www.oncoder.com/
728x90
반응형