https://py.checkio.org/station/library/에서
가장 Basic 단계부터 시작중이다.
이런 쉬운 문제도 못풀다니 현타오면서 이 길을 가지 말아야하나 고민하고 또 그랬는데, 현직자들이 하는 말이 한국에서 하는 코딩테스트는 다 연습으로 커버가 가능하다면서 열심히하라고 그래서 열심히 하는 중이다.
def mult_two(a, b):
a=int(a)
b=int(b)
return a*b
if name == 'main':
print("Example:")
print(mult_two(3, 2))
# These "asserts" are used for self-checking and not for an auto-testing
assert mult_two(3, 2) == 6
assert mult_two(1, 0) == 0
print("Coding complete? Click 'Check' to earn cool rewards!")