Skip to content

Commit 371956d

Browse files
committed
feat: Fizz-Buzz
1 parent 721e50f commit 371956d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Leetcode/0412.Fizz-Buzz/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ Constraints:
9494
## 解題思路
9595

9696
## Big O
97-
時間複雜 : ``
98-
空間複雜 : ``
97+
時間複雜 : `O(n)`
98+
空間複雜 : `O(n)`
9999

100100
## 來源
101101
* https://leetcode.com/problems/fizz-buzz/description/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ https://kimi0230.github.io/LeetcodeGolang/
1111
- [leetcode Content](#leetcode-content)
1212
- [Data Structure](#data-structure)
1313
- [Array \& String](#array--string)
14-
- [| 0412 | 0412.Fizz Buzz | Go | Easy | O(n) | | Array, string |](#-0412----------------------------------------------------------0412fizz-buzz---------------------------------------go---------------------easy------on---------------array-string-----------------)
14+
- [| 0412 | 0412.Fizz Buzz | Go | Easy | O(n) | O(n) | Array, string |](#-0412---------------------------------------------------------------------0412fizz-buzz---------------------------------------------------go---------------------easy--------on-------------on------array-string---------)
1515
- [Matrix](#matrix)
1616
- [Linked List](#linked-list)
1717
- [HashSet \& HashMap](#hashset--hashmap)
@@ -73,7 +73,7 @@ https://kimi0230.github.io/LeetcodeGolang/
7373
| [0409](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0409.Longest-Palindrome) | [409. Longest Palindrome](https://leetcode.com/problems/longest-palindrome/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0409.Longest-Palindrome) | Easy | O(n) | O(1) | Array |
7474
| [0380](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0380.Insert-Delete-GetRandom-O1) | [0380.Insert Delete GetRandom O(1)](https://leetcode.com/problems/insert-delete-getrandom-o1/description/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0380.Insert-Delete-GetRandom-O1) | Medium | O(1) | O(n) | Array |
7575
| [0381](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0381.Insert-Delete-GetRandom-O1-Duplicates-allowed) | [0381.Insert Delete GetRandom O(1) Duplicates allowed](https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0381.Insert-Delete-GetRandom-O1-Duplicates-allowed) | Medium | O(1) | O(n) | Array |
76-
| [0412](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0412.Fizz-Buzz) | [0412.Fizz Buzz](https://leetcode.com/problems/fizz-buzz/description/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0412.Fizz-Buzz) | Easy | O(n) | | Array, string |
76+
| [0412](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0412.Fizz-Buzz) | [0412.Fizz Buzz](https://leetcode.com/problems/fizz-buzz/description/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0412.Fizz-Buzz) | Easy | O(n) | O(n) | Array, string |
7777
---
7878

7979
#### Matrix

0 commit comments

Comments
 (0)