diff options
Diffstat (limited to 'day1/cheatsheet4.tex')
-rwxr-xr-x | day1/cheatsheet4.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/cheatsheet4.tex b/day1/cheatsheet4.tex index d7e8327..d04609a 100755 --- a/day1/cheatsheet4.tex +++ b/day1/cheatsheet4.tex @@ -52,7 +52,7 @@ array([[ 1, 1, 2], In []: C[1,2] Out[]: 1 \end{lstlisting} -Two indexes seperated by \typ{','} specifies [row, column]. So \kwrd{C[1,2]} gets third element of second row(indices starts from 0). +Two indexes seperated by \typ{','} specifies [row, column]. So \typ{C[1,2]} gets third element of second row(indices starts from 0). \newpage \begin{lstlisting} In []: C[1] |