項目 widget-area-1 尚未註冊或是沒有一個 view.php 檔案.
項目 widget-area-1 尚未註冊或是沒有一個 view.php 檔案.
項目 search-input 尚未註冊或是沒有一個 view.php 檔案.

【Leetcode】問題解決: Login failed. Please make sure the credential is correct. (內附圖文說明)

前言

問題解決: Login failed. Please make sure the credential is correct.

解決方法

不知道是什麼bug… 總之就先照網路上的解法解決吧!

1. 先去 leetcode 官網登入

沒什麼好說的,連結在這裡: https://leetcode.com/

2. 開啟 google chrome 的 檢查模式 (可以按 F12 或 右健選「檢查」)

google chrome 的 檢查模式的長相大概像下圖這樣:

3. 選擇 network,重新整理網頁,找到 graphql 這個檔案

參考上圖圈選的位置操作。

參考上圖圈選的位置操作。

Reference

https://www.programmersought.com/article/83515809689/
https://blog.csdn.net/DlMmU/article/details/104129662
https://juejin.cn/post/6844904052141228046

⭐ Leetcode 解題紀錄 ⭐題型資料結構Python SolutionC++ SolutionNote
⭐BFS 相關題型 ⭐
104Maximum Depth of Binary TreeBFS (分層)Python
94Binary Tree Inorder TraversalBFS (分層)TreePython 內含 處理 Tree 樹問題的重點
102Binary Tree Level Order TraversalBFS (分層)TreePython
103Binary Tree Zigzag Level Order TraversalBFS (分層)TreePython
107Binary Tree Level Order Traversal IIBFS (分層)TreePython
133Clone GraphBFS (分層)GraphPython Graph 的基本操作 #重要題型
127Word LadderBFS (分層), DFSGraphPython
[Lint] 127Topological SortingBFS (拓撲)Python
內有 indegree, outdegree 介紹 #重要題型
207Course ScheduleBFS (拓樸)Graph