Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 220 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 220 Bytes

Codewars-challenges

here are some solutions to the challenges I took i used pyhton for this challenge

def lovefunc(flower1, flower2):
    return (flower1 % 2) != (flower2 % 2)


print(lovefunc(2, 5))