-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Description
💬 문제
[코딩테스트 연습 - 짝수와 홀수](https://school.programmers.co.kr/learn/courses/30/lessons/12937)
💬 풀이
func solution(_ num:Int) -> String {
return num % 2 == 0 ? "Even" : "Odd"
}