🌓

leetcode : Merge Two Sorted Lists

runtime 4 ms, beats 94.91% of cpp submissions
O(n) solution with explanation

tags: linked list, pointer

Read More

paper : StyleGAN XL

StyleGAN-XL: Scaling StyleGAN to Large Diverse Datasets

briefly explained in a few minutes
difficulty : 💛💛💛💛🖤

tags: GAN, T2I

Read More

2022/8/13

2022/8/13 紀錄

Read More

leetcode : Valid Parentheses

runtime 0 ms, beats 100% of cpp submissions
O(n) solution with explanation

tags: stack

Read More

leetcode : Remove Nth Node From End of List

runtime 0 ms, beats 100% of cpp submissions
O(n) solution with explanation

tags: linked list, pointer

Read More

leetcode : 4 sum

runtime 12 ms, beats 98.62% of cpp submissions
O(n^3) solution with explanation

tags: two pointer, recursion

Read More

leetcode : Letter Combinations of a Phone Number

runtime 0 ms, beats 100% of cpp submissions
O(k^n) solution with explanation

tags: recursion

Read More

leetcode : Container With Most Water

runtime 96 ms, beats 94.68% of cpp submissions
O(n) solution with explanation

tags: two pointer

Read More

leetcode : Regular Expression Matching

runtime 0 ms, beats 100% of cpp submissions
O(mn) solution with explanation

tags: regex, dp

Read More

leetcode : Palindrome Number

runtime 11 ms, beats 92.38% of cpp submissions
O(log(n)) solution with explanation

tags: number

Read More