From 6089bd4323ccafcf80a1531da105f843c16b9570 Mon Sep 17 00:00:00 2001 From: Siz Long Date: Sat, 6 Dec 2025 14:53:22 +0800 Subject: [PATCH] Remove missing image references from linked list article --- ...75\242\351\223\276\350\241\250II_translated.md" | 14 ++------------ ...\226\207\345\255\227\346\257\215_translated.md" | 2 +- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git "a/app/docs/CommunityShare/Leetcode/142.\347\216\257\345\275\242\351\223\276\350\241\250II_translated.md" "b/app/docs/CommunityShare/Leetcode/142.\347\216\257\345\275\242\351\223\276\350\241\250II_translated.md" index 59e0dc7..f5896b5 100644 --- "a/app/docs/CommunityShare/Leetcode/142.\347\216\257\345\275\242\351\223\276\350\241\250II_translated.md" +++ "b/app/docs/CommunityShare/Leetcode/142.\347\216\257\345\275\242\351\223\276\350\241\250II_translated.md" @@ -133,17 +133,7 @@ abbrlink: e2c9cca9 ### Complexity analysis: hour间复杂度 O(N) :In the second encounter,慢pointer须走step数 a -Picture2.png -Picture3.png -Picture4.png -Picture5.png -Picture6.png -Picture7.png -Picture8.png -Picture9.png -Picture10.png -Picture11.png + @@ -166,7 +156,7 @@ class Solution: a, b = a.next, b.next return b ``` -```C++ +```cpp class Solution { public: ListNode *detectCycle(ListNode *head) { diff --git "a/app/docs/CommunityShare/Leetcode/2309\345\205\274\345\205\267\345\244\247\345\260\217\345\206\231\347\232\204\346\234\200\345\245\275\350\213\261\346\226\207\345\255\227\346\257\215_translated.md" "b/app/docs/CommunityShare/Leetcode/2309\345\205\274\345\205\267\345\244\247\345\260\217\345\206\231\347\232\204\346\234\200\345\245\275\350\213\261\346\226\207\345\255\227\346\257\215_translated.md" index 465d3ae..baecb6a 100644 --- "a/app/docs/CommunityShare/Leetcode/2309\345\205\274\345\205\267\345\244\247\345\260\217\345\206\231\347\232\204\346\234\200\345\245\275\350\213\261\346\226\207\345\255\227\346\257\215_translated.md" +++ "b/app/docs/CommunityShare/Leetcode/2309\345\205\274\345\205\267\345\244\247\345\260\217\345\206\231\347\232\204\346\234\200\345\245\275\350\213\261\346\226\207\345\255\227\346\257\215_translated.md" @@ -43,7 +43,7 @@ class Solution: return "" ``` -```C++ Hash table +```cpp Hash table class Solution { public: string greatestLetter(string s) {