[GitHub] 在 README 中嵌入影片
Last Updated on 2022-02-17 by Clay
在我們製作一個可 demo 的專案、或是實現一個很棒的功能時,往往都會希望可以錄製一段影片,來輕易地展示我們所實現的功能。
Read More »[GitHub] 在 README 中嵌入影片Last Updated on 2022-02-17 by Clay
在我們製作一個可 demo 的專案、或是實現一個很棒的功能時,往往都會希望可以錄製一段影片,來輕易地展示我們所實現的功能。
Read More »[GitHub] 在 README 中嵌入影片Last Updated on 2022-02-15 by Clay
Given a non-empty array of integers nums
, every element appears twice except for one. Find that single one.
You must implement a solution with a linear runtime complexity and use only constant extra space.
Read More »LeetCode: 136-Single Number 解題紀錄Last Updated on 2022-02-13 by Clay
Given an integer array nums
of unique elements, return all possible subsets (the power set).
The solution set must not contain duplicate subsets. Return the solution in any order.
Read More »LeetCode: 78-Subsets 解題紀錄Last Updated on 2022-02-11 by Clay
Given two stringsRead More »LeetCode: 567-Permutation in String 解題紀錄s1
ands2
, returntrue
ifs2
contains a permutation ofs1
, orfalse
otherwise. In other words, returntrue
if one ofs1
's permutations is the substring ofs2
.
Last Updated on 2022-02-07 by Clay
You are given two stringsRead More »LeetCode: 389-Find the Difference 解題紀錄s
andt
. Stringt
is generated by random shuffling strings
and then add one more letter at a random position. Return the letter that was added tot
.