온코더 레벨 3 홀수 짝수 판별
·
코테 문제 풀이/온코더 oncoder
class Solution: def solution(self, a): if a%2 == 0: res="EVEN" else : res="ODD" return res cs 출처 : www.oncoder.com/