Leetcode 2413. Smallest Even Multiple
2022-11-29 09:41 作者:您是打尖儿还是住店呢 | 我要投稿
Given a positive integer n
, return the smallest positive integer that is a multiple of both 2
and n
.
Example 1:
Input: n = 5Output: 10Explanation: The smallest multiple of both 5 and 2 is 10.
Example 2:
Input: n = 6Output: 6Explanation: The smallest multiple of both 6 and 2 is 6. Note that a number is a multiple of itself.
Constraints:
1 <= n <= 150
just one row!
Runtime: 0 ms, faster than 100.00% of Java online submissions for Smallest Even Multiple.
Memory Usage: 40.9 MB, less than 44.65% of Java online submissions for Smallest Even Multiple.