mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
14 lines
265 B
C++
14 lines
265 B
C++
|
#include <string>
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
std::string largestOddNumber(const std::string& num) {
|
||
|
auto i = num.find_last_of("13579");
|
||
|
if (i == std::string::npos) {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
return num.substr(0, i + 1);
|
||
|
}
|
||
|
};
|