414周赛·第一题 - 3280. 将日期转换为二进制表示

题目链接 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("-")
        ])
posted @ 2024-09-09 01:00  WrRan  阅读(11)  评论(0编辑  收藏  举报