From 54b1848a98d4096d1e50e3f8e3e4dfed97ba9b48 Mon Sep 17 00:00:00 2001 From: Siyuan Liu Date: Thu, 17 Dec 2020 09:58:00 -0800 Subject: [PATCH] fix typos in gameproblemsindynamicprogramming fix typos in gameproblemsindynamicprogramming --- dynamic_programming/GameProblemsInDynamicProgramming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic_programming/GameProblemsInDynamicProgramming.md b/dynamic_programming/GameProblemsInDynamicProgramming.md index 5dc7e3d..e3e0599 100644 --- a/dynamic_programming/GameProblemsInDynamicProgramming.md +++ b/dynamic_programming/GameProblemsInDynamicProgramming.md @@ -33,7 +33,7 @@ Before we introduce what a dp array means,let's take a look at what it ultimatel ![1](../pictures/GameProblems/1.png) -As explained below,tupels are considered to be a calss containing first and second atrributes,And to save space,these two atrributes are abbreviated to fir and sec.As shown in the figure above,we think `dp[1][3].fir = 10`,`dp[0][1].sec = 3`. +As explained below,tuples are considered to be a object containing first and second atrributes,And to save space,these two atrributes are abbreviated to fir and sec. As shown in the figure above,we think `dp[1][3].fir = 10`,`dp[0][1].sec = 3`. Start by answering a few questions that readers might ask: -- GitLab