Skip to content

Commit 692c0fa

Browse files
committed
feat: Blind75
1 parent cae4c8c commit 692c0fa

File tree

3 files changed

+61
-6
lines changed

3 files changed

+61
-6
lines changed

Leetcode/0053.Maximum-Subarray/README.md

+59-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,64 @@
11
---
22
title: 0053.Maximum Subarray
3-
tags: Easy, Dynamic Programming
4-
author: Kimi Tsai <[email protected]>
5-
description:
3+
subtitle: "https://leetcode.com/problems/maximum-subarray"
4+
date: 2024-02-23T25:04:00+08:00
5+
lastmod: 2024-02-23T25:04:00+08:00
6+
draft: false
7+
author: "Kimi.Tsai"
8+
authorLink: "https://kimi0230.github.io/"
9+
description: "0053.Maximum-Subarray"
10+
license: ""
11+
images: []
12+
13+
tags: [LeetCode, Go, Medium, Array, Dynamic Programming, Blind75]
14+
categories: [LeetCode]
15+
16+
featuredImage: ""
17+
featuredImagePreview: ""
18+
19+
hiddenFromHomePage: false
20+
hiddenFromSearch: false
21+
twemoji: false
22+
lightgallery: true
23+
ruby: true
24+
fraction: true
25+
fontawesome: true
26+
linkToMarkdown: false
27+
rssFullText: false
28+
29+
toc:
30+
enable: true
31+
auto: true
32+
code:
33+
copy: true
34+
maxShownLines: 200
35+
math:
36+
enable: false
37+
# ...
38+
mapbox:
39+
# ...
40+
share:
41+
enable: true
42+
# ...
43+
comment:
44+
enable: true
45+
# ...
46+
library:
47+
css:
48+
# someCSS = "some.css"
49+
# located in "assets/"
50+
# Or
51+
# someCSS = "https://cdn.example.com/some.css"
52+
js:
53+
# someJS = "some.js"
54+
# located in "assets/"
55+
# Or
56+
# someJS = "https://cdn.example.com/some.js"
57+
seo:
58+
images: []
59+
# ...
660
---
61+
762
# [53. Maximum Subarray](https://leetcode.com/problems/maximum-subarray/)
863

964
## 題目
@@ -20,7 +75,7 @@ If you have figured out the O(*n*) solution, try coding another solution using t
2075

2176
## 題目大意
2277

23-
給定一個整數數組 nums ,找到一個具有最大和的連續子數組(子數組最少包含一個元素),返回其最大和。
78+
給定一個整數數組 nums ,找到一個具有**最大和的連續子數組**(子數組最少包含一個元素),返回其最大和。
2479

2580
## 解題思路
2681

Leetcode/0217.Contains-Duplicate/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: "Contains Duplicate"
1010
license: ""
1111
images: []
1212

13-
tags: [LeetCode, Go, Easy, Contains Duplicate]
13+
tags: [LeetCode, Go, Easy, Contains Duplicate, Array, Blind75]
1414
categories: [LeetCode]
1515

1616
featuredImage: ""

Leetcode/0238.Product-of-Array-Except-Self/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: "0238.Product-of-Array-Except-Self"
1010
license: ""
1111
images: []
1212

13-
tags: [LeetCode, Go, Medium, Product of Array Except Self, Array, Prefix Sum]
13+
tags: [LeetCode, Go, Medium, Product of Array Except Self, Array, Prefix Sum, Blind75]
1414
categories: [LeetCode]
1515

1616
featuredImage: ""

0 commit comments

Comments
 (0)