Skip to content

Commit 027d91b

Browse files
authored
Change (V,b,i) to (V,i,b) for consistency
Made the change to be consistent with how the domain is defined and how the Python code below was implemented
1 parent 93b218f commit 027d91b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lec_04_code_and_data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ Please make sure that you understand why `GET` and $LOOKUP_\ell$ are the same fu
539539
We saw that we can compute $LOOKUP_\ell$ in time $O(2^\ell) = O(s)$ for our choice of $\ell$.
540540

541541
For every $\ell$, let $UPDATE_\ell:\{0,1\}^{2^\ell + \ell +1} \rightarrow \{0,1\}^{2^\ell}$ correspond to the `UPDATE` function for arrays of length $2^\ell$.
542-
That is, on input $V\in \{0,1\}^{2^\ell}$ , $i\in \{0,1\}^\ell$, $b\in \{0,1\}$, $UPDATE_\ell(V,b,i)$ is equal to $V' \in \{0,1\}^{2^\ell}$ such that
542+
That is, on input $V\in \{0,1\}^{2^\ell}$ , $i\in \{0,1\}^\ell$, $b\in \{0,1\}$, $UPDATE_\ell(V,i,b)$ is equal to $V' \in \{0,1\}^{2^\ell}$ such that
543543
$$
544544
V'_j = \begin{cases} V_j & j \neq i \\ b & j = i \end{cases}
545545
$$

0 commit comments

Comments
 (0)