摘要:
Algorithm 每周至少做一个 Leetcode 的算法题。 roman-to-integer class Solution { public int romanToInt(String s) { s = s.replace("IV","a"); s = s.replace("IX","b"); 阅读全文
posted @ 2023-09-13 15:10
刘俊涛的博客
阅读(14)
评论(0)
推荐(0)
摘要:
# 语义化版本 2.0.0 ## 摘要 版本格式:主版本号.次版本号.修订号,版本号递增规则如下: 1. 主版本号:当你做了不兼容的 API 修改, 2. 次版本号:当你做了向下兼容的功能性新增, 3. 修订号:当你做了向下兼容的问题修正。 先行版本号及版本编译信息可以加到“主版本号.次版本号.修订 阅读全文
posted @ 2023-09-13 13:51
刘俊涛的博客
阅读(107)
评论(0)
推荐(0)