You are given a string
sconsisting only of the characters'1'and'2'.You may delete any number of characters from
swithout changing the order of the remaining characters.Return the largest possible resultant string that represents an even integer. If there is no such string, return the empty string
"".
1 | class Solution { |