題目連結 | 3280. 將日期轉換為二進位制表示 |
---|---|
思路 | 簡易模擬即可 |
題解連結 | 庫函式簡潔寫法(Python/Java/C++/Go) |
關鍵點 | python語法+標準庫 |
程式碼:
class Solution:
def convertDateToBinary(self, date: str) -> str:
return "-".join([
bin(int(part))[2:] for part in date.split("-")
])