We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faf6c1c commit 9846b0dCopy full SHA for 9846b0d
2 files changed
src/components/MemoryPanel.tsx
@@ -11,14 +11,6 @@ interface MemoryPanelProps {
11
previousAvailable?: number[];
12
}
13
14
-// 调用栈帧接口
15
-interface StackFrame {
16
- depth: number;
17
- path: number[];
18
- currentChoice: number | null;
19
- availableChoices: number[];
20
-}
21
-
22
interface VariableState {
23
name: string;
24
value: string;
src/hooks/useTutorialController.ts
@@ -23,17 +23,6 @@ interface TutorialPrompt {
showPrediction?: boolean;
25
26
-// 教程步骤顺序
27
-const TUTORIAL_STEP_ORDER: TutorialStep[] = [
28
- 'intro',
29
- 'first-select',
30
- 'continue-select',
31
- 'first-complete',
32
- 'first-backtrack',
33
- 'explore-branch',
34
- 'summary',
35
-];
36
37
const TUTORIAL_PROMPTS: Record<TutorialStep, TutorialPrompt> = {
38
'intro': {
39
title: '🎓 欢迎来到回溯算法教程',
0 commit comments