Riguz的用户贡献
2023年9月23日 (星期六)
- 14:102023年9月23日 (六) 14:10 差异 历史 +1,435 5.Longest Palindromic Substring →2D DP
- 13:342023年9月23日 (六) 13:34 差异 历史 +1,693 新 5.Longest Palindromic Substring Created page with "=Description= {{LeetCode |id=longest-palindromic-substring |no=5 |difficulty=Medium |category=Dynamic Programming |collection=Top 150 |title=Longest Palindromic Substring |summary=Given a string s, return the longest palindromic substring in s.}} Example 1: <syntaxhighlight lang="java"> Input: s = "babad" Output: "bab" </syntaxhighlight> Explanation: "aba" is also a valid answer. Example 2: <syntaxhighlight lang="java"> Input: s = "cbbd" Output: "bb" </syntaxhighlig..."
- 13:082023年9月23日 (六) 13:08 差异 历史 0 小 64.Minimum Path Sum Riguz moved page LeetCode:64. Minimum Path Sum to 64.Minimum Path Sum without leaving a redirect 当前
- 13:072023年9月23日 (六) 13:07 差异 历史 0 小 120.Triangle Riguz moved page LeetCode:120.Triangle to 120.Triangle without leaving a redirect
- 13:052023年9月23日 (六) 13:05 差异 历史 −296 63.Unique Paths II →2D DP 当前
- 13:012023年9月23日 (六) 13:01 差异 历史 +1,158 63.Unique Paths II →Description
- 12:592023年9月23日 (六) 12:59 差异 历史 0 63.Unique Paths II →2D DP
- 12:582023年9月23日 (六) 12:58 差异 历史 +79 63.Unique Paths II →2D DP
- 12:582023年9月23日 (六) 12:58 差异 历史 +1,186 新 63.Unique Paths II Created page with "=Description= =Solution= == 2D DP== {{Submission|runtime=1ms|memory=44.49MB|rp=19.16|mp=98.98}} <syntaxhighlight lang="java"> class Solution { private int[][] grid; private int rows; private int cols; private int[][] dp; public int uniquePathsWithObstacles(int[][] obstacleGrid) { this.grid = obstacleGrid; this.rows = obstacleGrid.length; this.cols = obstacleGrid[0].length; this.dp = new int[rows][cols]; for(in..."
- 10:452023年9月23日 (六) 10:45 差异 历史 +1,377 64.Minimum Path Sum →DP+DFS
- 10:432023年9月23日 (六) 10:43 差异 历史 +102 64.Minimum Path Sum →Description
- 10:432023年9月23日 (六) 10:43 差异 历史 +668 新 64.Minimum Path Sum Created page with "=Description= {{LeetCode |id=minimum-path-sum |no=64 |difficulty=Medium |category=Dynamic Programming |collection=Top 150 |title=Minimum Path Sum |summary=Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right, which minimizes the sum of all numbers along its path.}} Note: You can only move either down or right at any point in time. Example 1: <syntaxhighlight lang="java"> Input: grid = [[1,3,1],[1,5,1],[4,2,1]] Output: 7 </synt..."
- 06:142023年9月23日 (六) 06:14 差异 历史 +808 120.Triangle →1D DP
- 06:042023年9月23日 (六) 06:04 差异 历史 −14 120.Triangle →Memory Optimization
- 06:042023年9月23日 (六) 06:04 差异 历史 −8 120.Triangle →First attampt
- 06:032023年9月23日 (六) 06:03 差异 历史 +44 120.Triangle →Memory Optimization
- 05:562023年9月23日 (六) 05:56 差异 历史 +58 120.Triangle →Solution
- 05:542023年9月23日 (六) 05:54 差异 历史 −4 120.Triangle →First attampt
- 05:542023年9月23日 (六) 05:54 差异 历史 +4 模板:Submission 无编辑摘要 当前
- 05:522023年9月23日 (六) 05:52 差异 历史 +100 模板:Submission 无编辑摘要
- 05:492023年9月23日 (六) 05:49 差异 历史 +588 新 模板:Submission Created page with "<table style="background:#de091233; padding: 10px; margin-bottom:10px;"> <tr> <td style="width:200px;">Runtime {{{runtime}}}</td> <td style="dispaly:table-cell;vertical-align:middle;padding-left:10px;padding-right:10px;"> <div style="width:100px;height:10px;background-color:grey;"> <div style="width:{{{rp}}}px;height:10px;background-color:red"></div> </div> </td> <td style="width:200px;">Memory {{{memory}}}</td> <div style="width:100px;height:10px;background-color:gr..."
- 05:332023年9月23日 (六) 05:33 差异 历史 +28 模板:LeetCode 无编辑摘要
- 05:302023年9月23日 (六) 05:30 差异 历史 −13 模板:LeetCode 无编辑摘要
- 05:302023年9月23日 (六) 05:30 差异 历史 +2 模板:LeetCode 无编辑摘要
- 05:292023年9月23日 (六) 05:29 差异 历史 +11 模板:LeetCode 无编辑摘要
- 05:282023年9月23日 (六) 05:28 差异 历史 +79 120.Triangle →Description
- 05:262023年9月23日 (六) 05:26 差异 历史 +2 模板:LeetCode 无编辑摘要
- 05:262023年9月23日 (六) 05:26 差异 历史 +38 模板:LeetCode 无编辑摘要
- 05:182023年9月23日 (六) 05:18 差异 历史 +176 模板:LeetCode 无编辑摘要
- 05:082023年9月23日 (六) 05:08 差异 历史 0 120.Triangle →Description
- 05:082023年9月23日 (六) 05:08 差异 历史 +22 120.Triangle →Description
- 05:062023年9月23日 (六) 05:06 差异 历史 −41 120.Triangle 无编辑摘要
- 05:062023年9月23日 (六) 05:06 差异 历史 +103 模板:LeetCode 无编辑摘要
- 04:262023年9月23日 (六) 04:26 差异 历史 0 120.Triangle 无编辑摘要
- 04:262023年9月23日 (六) 04:26 差异 历史 +2 模板:LeetCode 无编辑摘要
- 04:242023年9月23日 (六) 04:24 差异 历史 −2 120.Triangle 无编辑摘要
- 04:232023年9月23日 (六) 04:23 差异 历史 +28 120.Triangle 无编辑摘要
- 04:212023年9月23日 (六) 04:21 差异 历史 +80 新 模板:LeetCode Created page with "<span class="article-label">https://leetcode.com/problems/triangle/{{id}}</span>"
- 04:122023年9月23日 (六) 04:12 差异 历史 +847 120.Triangle →First attampt
- 04:062023年9月23日 (六) 04:06 差异 历史 0 小 120.Triangle Riguz moved page Leetcode:120.Triangle to LeetCode:120.Triangle without leaving a redirect
- 04:052023年9月23日 (六) 04:05 差异 历史 −4 120.Triangle →Solution
- 04:042023年9月23日 (六) 04:04 差异 历史 −2 120.Triangle →Description
- 04:032023年9月23日 (六) 04:03 差异 历史 +107 120.Triangle →=First attampt
- 04:012023年9月23日 (六) 04:01 差异 历史 +899 120.Triangle →Solution
- 03:562023年9月23日 (六) 03:56 差异 历史 +721 120.Triangle →Description
- 03:532023年9月23日 (六) 03:53 差异 历史 +53 MediaWiki:Sidebar 无编辑摘要
- 03:522023年9月23日 (六) 03:52 差异 历史 +110 新 120.Triangle Created page with "==Description== ==Solution== Category:Algorithm Category:Dynamic Programming Category:LeetCode"
2023年9月21日 (星期四)
- 13:122023年9月21日 (四) 13:12 差异 历史 −1,459 Main Page 无编辑摘要
- 13:112023年9月21日 (四) 13:11 差异 历史 +1,648 新 Main Page Created page with "200px|frameless <q> In a dark place we find ourselves, and a little more knowledge lights our way. </q> __NOTOC__ == Current Projects == 当前因计划变更,优先在研究Vert.x和Netty,因此重拾Forks项目,其余皆无限期暂停。 <table> <tr> <th style="width:200px;">Forks</th> <th style="width:200px;">Okapia(↓)</th> <th style="width:200px;">Jer(↓)</th> <th style="width:200px;">Avm(↓)</th> <th style="width:200px;">D..."
2023年9月13日 (星期三)
- 09:262023年9月13日 (三) 09:26 差异 历史 +479 Knative installation →Test create func