LeetCode Pyramid Transition Matrix Pyramid Transition Matrix https://leetcode.com/problems/pyramid-transition-matrix/ We are stacking blocks to form a pyramid. Each block has a color which is a one letter string. We are allowed to pl 2020-09-11 Program LeetCode
Dark Mode On Android Dark Mode On Android In this example, I am using Material Design. But you can also use the Theme.AppCompat.DayNight. This is a simple way to adapt a dark mode, if you wants more, check for GitHub or I 2020-09-05 Program Android
LeetCode Minimum Path Sum Minimum Path Sum https://leetcode.com/problems/minimum-path-sum/ 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 2020-08-30 Program LeetCode
LeetCode Surrounded Regions Surrounded Regions https://leetcode.com/problems/surrounded-regions/ Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by 'X'. A region i 2020-08-30 Program LeetCode
LeetCode Group Anagrams Group Anagrams https://leetcode.com/problems/group-anagrams/ Given an array of strings, group anagrams together. Example: Input: ["eat", "tea", "tan", "ate", 2020-08-30 Program LeetCode
LeetCode Missing Number Missing Number https://leetcode.com/problems/missing-number/ Given an array containing n distinct numbers taken from 0, 1, 2, …, n, find the one that is missing from the array. Example 1: Input: [3, 2020-08-30 Program LeetCode
Tips Using Windows10 本文章项目地址 https://github.com/AimerNeige/Tutorial.git 计算机使用技巧如果你是一个几乎没有接触过电脑但是却打算入门计算机专业,这篇文章将为你介绍一些基本的计算机使用技巧。 主要介绍 Windows10 的一些使用技巧,如果你是 mac 用户,请自行查阅其他文章,但是如果你是 Linux 用户,我觉得你应该不需要看我的文章。 杀毒软件或许你会在较旧的 2020-08-26 Computer Windows
MinGW Install For Windows MinGW Install For WindowsClick here to download the MinGW setup file. Run the mingw-get-setup.exe. Click Install. Click Continue. Waite for install. After install done, click Continue. Select what you 2020-08-19 Others Software Windows
Android Change Package Name Change Package Name QuicklySometimes, we may need to change the package name of our Android Project. Maybe the package is not suitable or we get a better package name. But that’s doesn’t matter, we ju 2020-08-18 Program Android
Android Develop Data Save Android Develop Data SaveSave data to filesave data// This function will save the data of inputText into file "data" as text file // The file "data" will be saved to /data/data/com 2020-08-10 Program Android