1363. Largest Multiple of Three
Description
**Input:** digits = [8,1,9]
**Output:** "981"**Input:** digits = [8,6,7,1,0]
**Output:** "8760"**Input:** digits = [1]
**Output:** ""**Input:** digits = [0,0,0,0,0,0]
**Output:** "0"ac
Last updated