Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/seanprashad/leetcode-patterns
/ loadCompleted
Function
loadCompleted
src/lib/storage.ts:29–31 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
27
}
28
29
export
function
loadCompleted(): Set<number> {
30
return
new
Set(loadJson<number[]>(STORAGE_KEY, []));
31
}
32
33
export
function
saveCompleted(ids: Set<number>): void {
34
saveJson(STORAGE_KEY, [...ids]);
Callers
7
QuestionsTable
Function · 0.90
RoadmapView
Function · 0.90
sync.test.ts
File · 0.90
storage.test.ts
File · 0.90
uploadProgress
Function · 0.90
mergeFromRealtimePayload
Function · 0.90
migrateLegacyProgress
Function · 0.85
Calls
1
loadJson
Function · 0.85
Tested by
no test coverage detected