Level 1 짝수와 홀수
시간 복잡도: O(1)
1#include <bits/stdc++.h> 2using namespace std; 3string solution(int num) { 4 return (num&1) ? "Odd" : "Even"; 5}