Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 302 Bytes

File metadata and controls

15 lines (10 loc) · 302 Bytes
string oddEven(int N){
        // code here 
        
        if(N&1)
            return "odd";
        return "even";
        
        //odd numbers rightmost bit always 1
    }