extension BinaryInteger { var digits: [Int] { return String(describing: self).compactMap { Int(String($0)) } } }.
確定! 回上一頁