diff -r 88a01948450d -r d33698326409 manipulating-lists/quickref.tex --- a/manipulating-lists/quickref.tex Wed Nov 17 23:24:57 2010 +0530 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ -Slicing \& Striding a list:\\ -{\ex \lstinline| A[start:stop:step]|} \lstinline|stop| excluded - -Sorting a list:\\ -{\ex \lstinline| sorted(A)|} -- returns new list -{\ex \lstinline| A.sort()|} -- in-place sort - -Reversing a list:\\ -{\ex \lstinline| A[::-1]|} -- returns new list -{\ex \lstinline| A.reverse()|} -- in-place reverse