2023年9月26日 (星期二)
- 10:122023年9月26日 (二) 10:12 差异 历史 +106 新 Mac:Arm Cross Compile Created page with " Install gnu compilers: * https://developer.arm.com/downloads/-/gnu-rm Category:Mac Category:Arm"
2023年9月25日 (星期一)
- 11:072023年9月25日 (一) 11:07 差异 历史 0 PyTorch get started 无编辑摘要
- 11:072023年9月25日 (一) 11:07 差异 历史 +55 PyTorch get started 无编辑摘要
- 11:062023年9月25日 (一) 11:06 差异 历史 +122 新 PyTorch get started Created page with "<syntaxhighlight lang="java"> conda create --name deeplearning python=3.11 </syntaxhighlight> Category:Deep Learning"
- 10:462023年9月25日 (一) 10:46 差异 历史 −16 Main Page →Status
- 05:372023年9月25日 (一) 05:37 差异 历史 +443 Java Record 无编辑摘要 当前
- 05:292023年9月25日 (一) 05:29 差异 历史 +397 新 Java Record Created page with " <syntaxhighlight lang="java"> public class Test { record Person(String firstName, String lastName, int age) { } public static void main(String[] args) { var me = new Person("Riguz", "Lee", 20); System.out.println(me); } } </syntaxhighlight> Output: <syntaxhighlight lang="java"> Person[firstName=Riguz, lastName=Lee, age=20] </syntaxhighlight> Category:Java"
- 05:232023年9月25日 (一) 05:23 差异 历史 +15 Java Text Block →Bytecode 当前
- 05:222023年9月25日 (一) 05:22 差异 历史 +716 新 Java Switch Expression Created page with "<syntaxhighlight lang="java"> public class Test { public static void main(String[] args) { System.out.println(countryName("CN")); System.out.println(countryName("EN")); System.out.println(countryName("US")); System.out.println(countryName("XX")); } private static String countryName(String shortName) { return switch(shortName) { case "CN" -> "China"; case "EN" -> "English"; case "US"..." 当前
- 05:172023年9月25日 (一) 05:17 差异 历史 +3,947 Java Text Block 无编辑摘要
- 05:132023年9月25日 (一) 05:13 差异 历史 +515 新 Java Text Block Created page with "<syntaxhighlight lang="java"> public class Test { public static void main(String[] args) { String message = """ Hello world! This line is started with indention Reserved LE spaces \s """; System.out.println(message.replaceAll("\s", "~")); } } </syntaxhighlight> Output: <syntaxhighlight lang="java"> Hello~world! ~~~~This~line~is~started~with~indention Reserved~LE~spaces~~~..."
- 05:082023年9月25日 (一) 05:08 差异 历史 +62 MediaWiki:Sidebar 无编辑摘要
- 05:072023年9月25日 (一) 05:07 差异 历史 +11 MediaWiki:Sidebar 无编辑摘要
2023年9月24日 (星期日)
- 15:592023年9月24日 (日) 15:59 差异 历史 +26 5.Longest Palindromic Substring →Two Pointers
- 15:582023年9月24日 (日) 15:58 差异 历史 +287 5.Longest Palindromic Substring →Two Pointers
- 15:542023年9月24日 (日) 15:54 差异 历史 +843 5.Longest Palindromic Substring →2D DP
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 无编辑摘要