Did you waive your rights to the code anywhere? If not then it’s still your code and they used it without obtaining the rights to using it - depending on your jurisdiction ofc.
- 0 Posts
- 2 Comments
Joined 1 year ago
Cake day: September 5th, 2024
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.


def is_even(n: int) -> bool: if n < 0: return is_even(-n) r = True for _ in range(n): r = not r return r