object Solution { def defangIPaddr(address: String): String = { address.flatMap { case '.' => "[.]" case c => "" + c } } }. Comments: 0.
確定! 回上一頁