Lifestyle March 21, 2023

My First Blog

Now in 2023, why do I restart my blog? There has Tiktok, Ins, Twitter and so many platforms. Why personal blog?

I don’t know, maybe it could make me slow down and document some daily thoughts or some technical notes during the daily working otherwise I may forget; maybe I want to improve my English writing; maybe this is another 3 minutes crush, but I do hope I could keep it longer.

To my 30th

You may also like...

Mar
07
2024
0

Daily Question – 0876. Middle of the Linked List

Implement a ‘two pointers’ algorithm, where one pointer moves at a fast pace, advancing two steps at a time, and the other moves at a slower pace, advancing one step at a time. When the fast pointer reaches the end, return the position of the slow pointer.

Mar
09
2024
0

Daily Question – 25. Reverse Nodes in k-Group

Post Views: 37 Description: https://leetcode.com/problems/reverse-nodes-in-k-group/description/ Note: Code:

May
17
2023
0

2023 – Northern Europe Trip Part4 – Norway in Nutshell 挪威缩影

我们挪威之行一共访问了三个城市,斯塔万格,卑尔根还有首都奥斯陆,这篇主要介绍一下在这三个城市的旅游以及挪威缩影 Norway in Nutshell。

Feb
25
2024
0

Daily Question – *2709. Greatest Common Divisor Traversal

We can translate the question into: ‘Consider each number as a node in a graph, and if the greatest common divisor (gcd) of two numbers is not 1, then link them. Check if the graph is connected.’