index
:
oj.git
master
Unnamed repository; edit this file 'description' to name the repository.
root
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
leetcode
/
2413
/
main.c
blob: 903d3f58e0e6dbaceed3ad4acd37331d63ad21c5 (
plain
) (
blame
)
1
2
3
int smallestEvenMultiple(int n) { return n * (1 + n % 2); }