algorighm/README.md

19 lines
607 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# algorithm
javascript算法练习仓库
在协作开发中,通常使用一定的代码提交前缀来标识提交的内容类型。这有助于更清晰地了解每个提交的用途。常见的前缀包括:
feat: 新功能feature
fix: 修复 bug
docs: 文档变更
style: 代码样式变更(不影响代码运行的变动)
refactor: 代码重构
test: 添加或修改测试
chore: 构建过程或辅助工具的变动
这些前缀一般以小写字母开头,后面跟着一个冒号。例如:
feat: 添加用户注册功能
fix: 修复登录页面样式问题
docs: 更新README文s