iT邦幫忙

鐵人檔案

2022 iThome 鐵人賽
回列表
自我挑戰組

挑戰 blind 75: 以圖解方式練習解題 系列

這次想透過練習 blind 75 ,來整理過去學過的演算法與資料結構
主要會有幾個方向:
1. 圖解的方式來做練習。
2. 分析解題其中的時間與空間複雜度。
3. 預計會使用 golang 作為解題的語言。
4. 寫下卡關遇到的難題。

鐵人鍊成 | 共 93 篇文章 | 23 人訂閱 訂閱系列文 RSS系列文 團隊E04
DAY 21

圖解 blind 75: Dynamic Programming 策略簡介

Dynamic Programming 策略簡介 Dynamic Programming(動態規劃) 是一種解決問題的策略。 Dynamic Programmi...

2022-09-21 ‧ 由 json_liang 分享
DAY 21

圖解 blind 75: Dynamic Programming - Climbing Stairs(1/3)

Climbing Stairs You are climbing a staircase. It takes n steps to reach the top....

2022-09-21 ‧ 由 json_liang 分享
DAY 21

圖解 blind 75: Dynamic Programming - House Robber(2/3)

House Robber You are a professional robber planning to rob houses along a street...

2022-09-21 ‧ 由 json_liang 分享
DAY 21

圖解 blind 75: Dynamic Programming - House Robber II(3/3)

House Robber II You are a professional robber planning to rob houses along a str...

2022-09-21 ‧ 由 json_liang 分享
DAY 22

圖解 blind 75: Dynamic Programming - Decode Ways(1/3)

Decode Ways A message containing letters from A-Z can be encoded into numbers us...

2022-09-22 ‧ 由 json_liang 分享
DAY 22

圖解 blind 75: Dynamic Programming - Longest Palindromic Substring(2/3)

Longest Palindromic Substring Given a string s, return the longest palindromic s...

2022-09-22 ‧ 由 json_liang 分享
DAY 22

圖解 blind 75: Dynamic Programming - Palindromic Substrings(3/3)

Palindromic Substrings Given a string s, return the number of palindromic substr...

2022-09-22 ‧ 由 json_liang 分享
DAY 23

圖解 blind 75: Dynamic Programming - Longest Increasing Subsequence(1/4)

Longest Increasing Subsequence Given an integer array nums, return the length of...

2022-09-23 ‧ 由 json_liang 分享
DAY 23

圖解 blind 75: Dynamic Programming - Word Break(2/4)

Word Break Given a string s and a dictionary of strings wordDict, return true if...

2022-09-23 ‧ 由 json_liang 分享
DAY 23

圖解 blind 75: Dynamic Programming - Maximum Product Subarray(3/4)

Maximum Product Subarray Given an integer array nums, find a contiguous non-empt...

2022-09-23 ‧ 由 json_liang 分享