Skip to content

Commit 037fda7

Browse files
author
openset
committed
Add: v1.5.3
1 parent d40e31a commit 037fda7

File tree

44 files changed

+44
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+44
-44
lines changed

internal/leetcode/topic_tag.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func (tag *TagType) SaveContents() {
3535
var buf bytes.Buffer
3636
buf.WriteString(authInfo("tag"))
3737
buf.WriteString(fmt.Sprintf("\n## [话题分类](../README.md) > %s\n\n", tag.name()))
38-
buf.WriteString("| # | 题名 | 标签 | 难度 |\n")
38+
buf.WriteString("| # | 题目 | 标签 | 难度 |\n")
3939
buf.WriteString("| :-: | - | - | :-: |\n")
4040
format := "| %d | [%s](../../problems/%s)%s | %s | %s |\n"
4141
for _, question := range questions {

internal/tag/tag.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func runTag(cmd *base.Command, args []string) {
2929
var buf bytes.Buffer
3030
buf.WriteString(base.AuthInfo("tag"))
3131
buf.WriteString("\n## 话题分类\n\n")
32-
buf.WriteString("| # | Title | 话题 | | # | Title | 话题 |\n")
32+
buf.WriteString("| # | Topic | 话题 | | # | Topic | 话题 |\n")
3333
buf.WriteString("| :-: | - | :-: | - | :-: | - | :-: |\n")
3434
format := "| %d | [%s](%s/README.md) | [%s](https://openset.github.io/tags/%s/) | "
3535
n := buf.Len()

internal/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/openset/leetcode/internal/base"
99
)
1010

11-
const version = "1.5.2"
11+
const version = "1.5.3"
1212

1313
// CmdVersion - version.CmdVersion
1414
var CmdVersion = &base.Command{

tag/README.md

+1-1

tag/array/README.md

+1-1

tag/backtracking/README.md

+1-1

tag/binary-indexed-tree/README.md

+1-1

tag/binary-search-tree/README.md

+1-1

tag/binary-search/README.md

+1-1

tag/bit-manipulation/README.md

+1-1

tag/brainteaser/README.md

+1-1

tag/breadth-first-search/README.md

+1-1

tag/depth-first-search/README.md

+1-1

tag/design/README.md

+1-1

tag/divide-and-conquer/README.md

+1-1

tag/dynamic-programming/README.md

+1-1

tag/geometry/README.md

+1-1

tag/graph/README.md

+1-1

tag/greedy/README.md

+1-1

tag/hash-table/README.md

+1-1

tag/heap/README.md

+1-1

tag/line-sweep/README.md

+1-1

tag/linked-list/README.md

+1-1

tag/math/README.md

+1-1

tag/memoization/README.md

+1-1

tag/minimax/README.md

+1-1

tag/ordered-map/README.md

+1-1

tag/queue/README.md

+1-1

tag/random/README.md

+1-1

tag/recursion/README.md

+1-1

tag/rejection-sampling/README.md

+1-1

tag/reservoir-sampling/README.md

+1-1

tag/rolling-hash/README.md

+1-1

tag/segment-tree/README.md

+1-1

tag/sliding-window/README.md

+1-1

tag/sort/README.md

+1-1

tag/stack/README.md

+1-1

tag/string/README.md

+1-1

tag/suffix-array/README.md

+1-1

tag/topological-sort/README.md

+1-1

tag/tree/README.md

+1-1

tag/trie/README.md

+1-1

0 commit comments

Comments
 (0)