Skip to content

Commit 9395f51

Browse files
committed
add notes for determine if it's palindrome linked list
1 parent f6040a3 commit 9395f51

File tree

242 files changed

+7042
-317
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+7042
-317
lines changed

234-palindrome-linked-list/index.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!doctype html>
2+
<html lang="en-us">
3+
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
4+
<title>Palindrome Linked List // davidgao7 blog</title>
5+
<link rel="shortcut icon" href="/images/favicon.jpg" />
6+
<meta charset="utf-8" />
7+
<meta name="generator" content="Hugo 0.147.1">
8+
<meta name="viewport" content="width=device-width, initial-scale=1" />
9+
<meta name="author" content="David Gao" />
10+
<meta name="description" content="" />
11+
<link rel="stylesheet" href="/css/main.min.5b1fcc8902588589c4767187402a3c29f8b8d7a6fdef6d9f8f77045bb0d14fee.css" />
12+
13+
14+
15+
16+
<meta name="twitter:card" content="summary">
17+
<meta name="twitter:title" content="Palindrome Linked List">
18+
<meta name="twitter:description" content="Note new findings every day to let the magic happen!">
19+
20+
<meta property="og:url" content="http://localhost:1313/234-palindrome-linked-list/">
21+
<meta property="og:site_name" content="davidgao7 blog">
22+
<meta property="og:title" content="Palindrome Linked List">
23+
<meta property="og:description" content="Note new findings every day to let the magic happen!">
24+
<meta property="og:locale" content="en_us">
25+
<meta property="og:type" content="article">
26+
<meta property="article:published_time" content="2025-05-03T18:36:02-04:00">
27+
<meta property="article:modified_time" content="2025-05-03T18:36:02-04:00">
28+
29+
30+
</head>
31+
<body>
32+
<header class="app-header">
33+
<a href="/"><img class="app-header-avatar" src="/images/avatar.jpg" alt="David Gao" /></a>
34+
<span class="app-header-title">davidgao7 blog</span>
35+
<nav class="app-header-menu">
36+
<a class="app-header-menu-item" href="/">Home</a>
37+
-
38+
39+
<a class="app-header-menu-item" href="/tags/">Tags</a>
40+
</nav>
41+
<p>Note new findings every day to let the magic happen!</p>
42+
<div class="app-header-social">
43+
44+
<a href="https://github.com/davidgao7" target="_blank" rel="noreferrer noopener me">
45+
<svg class="icon icon-brand-github" viewBox="0 0 24 24" fill="currentColor"><title>GitHub</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
46+
</a>
47+
48+
</div>
49+
</header>
50+
<main class="app-container">
51+
52+
<article class="post">
53+
<header class="post-header">
54+
<h1 class ="post-title">Palindrome Linked List</h1>
55+
</header>
56+
<div class="post-content">
57+
58+
</div>
59+
<div class="post-footer">
60+
61+
</div>
62+
</article>
63+
64+
</main>
65+
</body>
66+
</html>

404.html

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>404 Page not found // davidgao7 blog</title>
55
<link rel="shortcut icon" href="/images/favicon.jpg" />
66
<meta charset="utf-8" />
7-
<meta name="generator" content="Hugo 0.146.7">
7+
<meta name="generator" content="Hugo 0.147.1">
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
<meta name="author" content="David Gao" />
1010
<meta name="description" content="" />
@@ -25,6 +25,25 @@
2525
<meta property="og:type" content="website">
2626

2727

28+
29+
<script>
30+
window.MathJax = {
31+
tex: {
32+
inlineMath: [['\\(', '\\)']],
33+
displayMath: [['\\[', '\\]'], ['$$', '$$']]
34+
},
35+
svg: {
36+
fontCache: 'global'
37+
}
38+
};
39+
</script>
40+
<script type="text/javascript" async
41+
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.0/es5/tex-mml-chtml.js">
42+
</script>
43+
44+
45+
46+
2847
</head>
2948
<body>
3049
<header class="app-header">

_index_of_content/index.html

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title> // davidgao7 blog</title>
55
<link rel="shortcut icon" href="/images/favicon.jpg" />
66
<meta charset="utf-8" />
7-
<meta name="generator" content="Hugo 0.146.7">
7+
<meta name="generator" content="Hugo 0.147.1">
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
<meta name="author" content="David Gao" />
1010
<meta name="description" content="" />
@@ -25,6 +25,25 @@
2525
<meta property="og:type" content="article">
2626

2727

28+
29+
<script>
30+
window.MathJax = {
31+
tex: {
32+
inlineMath: [['\\(', '\\)']],
33+
displayMath: [['\\[', '\\]'], ['$$', '$$']]
34+
},
35+
svg: {
36+
fontCache: 'global'
37+
}
38+
};
39+
</script>
40+
<script type="text/javascript" async
41+
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.0/es5/tex-mml-chtml.js">
42+
</script>
43+
44+
45+
46+
2847
</head>
2948
<body>
3049
<header class="app-header">

categories/index.html

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>Categories // davidgao7 blog</title>
55
<link rel="shortcut icon" href="/images/favicon.jpg" />
66
<meta charset="utf-8" />
7-
<meta name="generator" content="Hugo 0.146.7">
7+
<meta name="generator" content="Hugo 0.147.1">
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
<meta name="author" content="David Gao" />
1010
<meta name="description" content="" />
@@ -26,6 +26,25 @@
2626
<meta property="og:type" content="website">
2727

2828

29+
30+
<script>
31+
window.MathJax = {
32+
tex: {
33+
inlineMath: [['\\(', '\\)']],
34+
displayMath: [['\\[', '\\]'], ['$$', '$$']]
35+
},
36+
svg: {
37+
fontCache: 'global'
38+
}
39+
};
40+
</script>
41+
<script type="text/javascript" async
42+
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.0/es5/tex-mml-chtml.js">
43+
</script>
44+
45+
46+
47+
2948
</head>
3049
<body>
3150
<header class="app-header">

index.html

Lines changed: 31 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>davidgao7 blog</title>
55
<link rel="shortcut icon" href="/images/favicon.jpg" />
66
<meta charset="utf-8" />
7-
<meta name="generator" content="Hugo 0.146.7">
7+
<meta name="generator" content="Hugo 0.147.1">
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
<meta name="author" content="David Gao" />
1010
<meta name="description" content="Note new findings every day to let the magic happen!" />
@@ -26,6 +26,25 @@
2626
<meta property="og:type" content="website">
2727

2828

29+
30+
<script>
31+
window.MathJax = {
32+
tex: {
33+
inlineMath: [['\\(', '\\)']],
34+
displayMath: [['\\[', '\\]'], ['$$', '$$']]
35+
},
36+
svg: {
37+
fontCache: 'global'
38+
}
39+
};
40+
</script>
41+
<script type="text/javascript" async
42+
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.0/es5/tex-mml-chtml.js">
43+
</script>
44+
45+
46+
47+
2948
</head>
3049
<body>
3150
<header class="app-header">
@@ -53,6 +72,17 @@ <h1>davidgao7 blog</h1>
5372

5473
<ul class="posts-list">
5574

75+
<li class="posts-list-item">
76+
<a class="posts-list-item-title" href="/posts/palindrome-linked-list/">Palindrome Linked List</a>
77+
<span class="posts-list-item-description">
78+
<svg class="icon icon-calendar" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>calendar</title><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
79+
May 3, 2025
80+
<span class="posts-list-item-separator">-</span>
81+
<svg class="icon icon-clock" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>clock</title><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>
82+
3 min read
83+
</span>
84+
</li>
85+
5686
<li class="posts-list-item">
5787
<a class="posts-list-item-title" href="/posts/training-resnet-using-pytorch/">Training Resnet Using Pytorch</a>
5888
<span class="posts-list-item-description">
@@ -152,17 +182,6 @@ <h1>davidgao7 blog</h1>
152182
</span>
153183
</li>
154184

155-
<li class="posts-list-item">
156-
<a class="posts-list-item-title" href="/posts/divide-arr-into-arr-with-max-diff/">Divide Arr Into Arrs With Max Diff</a>
157-
<span class="posts-list-item-description">
158-
<svg class="icon icon-calendar" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>calendar</title><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
159-
Feb 25, 2025
160-
<span class="posts-list-item-separator">-</span>
161-
<svg class="icon icon-clock" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>clock</title><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>
162-
3 min read
163-
</span>
164-
</li>
165-
166185
</ul>
167186

168187

0 commit comments

Comments
 (0)