前言
問題解決: Login failed. Please make sure the credential is correct.
解決方法
不知道是什麼bug… 總之就先照網路上的解法解決吧!
1. 先去 leetcode 官網登入
沒什麼好說的,連結在這裡: https://leetcode.com/
2. 開啟 google chrome 的 檢查模式 (可以按 F12 或 右健選「檢查」)
google chrome 的 檢查模式的長相大概像下圖這樣:
3. 選擇 network,重新整理網頁,找到 graphql 這個檔案
參考上圖圈選的位置操作。
4. 點擊 graphql 這個檔案後,查看 Headers,往下找到 cookie 這個字,右鍵選 copy value
參考上圖圈選的位置操作。
Reference
https://www.programmersought.com/article/83515809689/
https://blog.csdn.net/DlMmU/article/details/104129662
https://juejin.cn/post/6844904052141228046
⭐ Leetcode 解題紀錄 ⭐ | 題型 | 資料結構 | Python Solution | C++ Solution | Note | |
---|---|---|---|---|---|---|
⭐BFS 相關題型 ⭐ | ||||||
104 | Maximum Depth of Binary Tree | BFS (分層) | Python | |||
94 | Binary Tree Inorder Traversal | BFS (分層) | Tree | Python | 內含 處理 Tree 樹問題的重點 | |
102 | Binary Tree Level Order Traversal | BFS (分層) | Tree | Python | ||
103 | Binary Tree Zigzag Level Order Traversal | BFS (分層) | Tree | Python | ||
107 | Binary Tree Level Order Traversal II | BFS (分層) | Tree | Python | ||
133 | Clone Graph | BFS (分層) | Graph | Python | Graph 的基本操作 #重要題型 | |
127 | Word Ladder | BFS (分層), DFS | Graph | Python | ||
[Lint] 127 | Topological Sorting | BFS (拓撲) | Python | 內有 indegree, outdegree 介紹 #重要題型 | ||
207 | Course Schedule | BFS (拓樸) | Graph |