Skip to content

Commit 7bb5bf0

Browse files
committed
Update Table Of Contents
1 parent d0eea3e commit 7bb5bf0

1 file changed

Lines changed: 44 additions & 40 deletions

File tree

β€ŽREADME.mdβ€Ž

Lines changed: 44 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -22,66 +22,70 @@ So, here ya go...
2222

2323
- [Structure of the Examples](#structure-of-the-examples)
2424
- [Some fancy Title](#some-fancy-title)
25-
- [πŸ’‘ Explanation:](#-explanation)
25+
- [πŸ’‘ Explanation:](#-explanation)
2626
- [Usage](#usage)
2727
- [πŸ‘€ Examples](#-examples)
28-
- [Midnight time doesn't exist?](#midnight-time-doesnt-exist)
28+
- [Skipping lines?](#skipping-lines)
29+
- [Explanation](#explanation)
30+
- [Well, something is fishy...](#well-something-is-fishy)
31+
- [Explanation](#explanation-1)
32+
- [Time for some hash brownies!](#time-for-some-hash-brownies)
33+
- [Explanation](#explanation-2)
34+
- [Evaluation time disperancy](#evaluation-time-disperancy)
35+
- [πŸ’‘ Explanation](#-explanation)
36+
- [Modifying a dictionary while iterating over it](#modifying-a-dictionary-while-iterating-over-it)
37+
- [Explanation:](#explanation)
38+
- [Deleting a list item while iterating over it](#deleting-a-list-item-while-iterating-over-it)
2939
- [πŸ’‘ Explanation:](#-explanation-1)
30-
- [`is` is not what it is!](#is-is-not-what-it-is)
40+
- [Backslashes at the end of string](#backslashes-at-the-end-of-string)
41+
- [Explanation](#explanation-3)
42+
- [Let's make a giant string!](#lets-make-a-giant-string)
43+
- [Explanation](#explanation-4)
44+
- [String concatenation interpreter optimizations.](#string-concatenation-interpreter-optimizations)
3145
- [πŸ’‘ Explanation:](#-explanation-2)
32-
- [The function inside loop sticks to the same output](#the-function-inside-loop-sticks-to-the-same-output)
33-
- [Explanation](#explanation)
34-
- [Loop variables leaking out of local scope!](#loop-variables-leaking-out-of-local-scope)
46+
- [Yes, it exists!](#yes-it-exists)
3547
- [πŸ’‘ Explanation:](#-explanation-3)
36-
- [A tic-tac-toe where X wins in first attempt!](#a-tic-tac-toe-where-x-wins-in-first-attempt)
48+
- [`is` is not what it is!](#is-is-not-what-it-is)
3749
- [πŸ’‘ Explanation:](#-explanation-4)
38-
- [Beware of default mutable arguments!](#beware-of-default-mutable-arguments)
50+
- [`is not ...` is different from `is (not ...)`](#is-not--is-different-from-is-not-)
51+
- [Explanation](#explanation-5)
52+
- [The function inside loop sticks to the same output](#the-function-inside-loop-sticks-to-the-same-output)
53+
- [Explanation](#explanation-6)
54+
- [Loop variables leaking out of local scope!](#loop-variables-leaking-out-of-local-scope)
3955
- [πŸ’‘ Explanation:](#-explanation-5)
40-
- [Mutating the immutable!](#mutating-the-immutable)
56+
- [A tic-tac-toe where X wins in the first attempt!](#a-tic-tac-toe-where-x-wins-in-the-first-attempt)
4157
- [πŸ’‘ Explanation:](#-explanation-6)
42-
- [Using a variable not defined in scope](#using-a-variable-not-defined-in-scope)
58+
- [Beware of default mutable arguments!](#beware-of-default-mutable-arguments)
4359
- [πŸ’‘ Explanation:](#-explanation-7)
44-
- [The disappearing variable from outer scope](#the-disappearing-variable-from-outer-scope)
60+
- [Mutating the immutable!](#mutating-the-immutable)
4561
- [πŸ’‘ Explanation:](#-explanation-8)
46-
- [Return return everywhere!](#return-return-everywhere)
62+
- [Using a variable not defined in scope](#using-a-variable-not-defined-in-scope)
4763
- [πŸ’‘ Explanation:](#-explanation-9)
48-
- [When True is actually False](#when-true-is-actually-false)
64+
- [The disappearing variable from outer scope](#the-disappearing-variable-from-outer-scope)
4965
- [πŸ’‘ Explanation:](#-explanation-10)
50-
- [Evaluation time disperancy](#evaluation-time-disperancy)
51-
- [πŸ’‘ Explanation](#-explanation)
52-
- [Be careful with chained operations](#be-careful-with-chained-operations)
66+
- [Return return everywhere!](#return-return-everywhere)
5367
- [πŸ’‘ Explanation:](#-explanation-11)
54-
- [a += b doesn't behave the same way as a = a + b](#a--b-doesnt-behave-the-same-way-as-a--a--b)
68+
- [When True is actually False](#when-true-is-actually-false)
5569
- [πŸ’‘ Explanation:](#-explanation-12)
56-
- [Backslashes at the end of string](#backslashes-at-the-end-of-string)
57-
- [Explanation](#explanation-1)
58-
- [Editing a dictionary while iterating over it](#editing-a-dictionary-while-iterating-over-it)
59-
- [Explanation:](#explanation)
60-
- [`is not ...` is different from `is (not ...)`](#is-not--is-different-from-is-not-)
61-
- [Explanation](#explanation-2)
62-
- [Time for some hash brownies!](#time-for-some-hash-brownies)
63-
- [Explanation](#explanation-3)
64-
- [Skipping lines?](#skipping-lines)
65-
- [Explanation](#explanation-4)
70+
- [Be careful with chained operations](#be-careful-with-chained-operations)
71+
- [πŸ’‘ Explanation:](#-explanation-13)
72+
- [a += b doesn't behave the same way as a = a + b](#a--b-doesnt-behave-the-same-way-as-a--a--b)
73+
- [πŸ’‘ Explanation:](#-explanation-14)
6674
- [Name resolution ignoring class scope](#name-resolution-ignoring-class-scope)
67-
- [πŸ’‘ Explanation](#-explanation-1)
75+
- [πŸ’‘ Explanation](#-explanation-1)
6876
- [From filled to None in one instruction...](#from-filled-to-none-in-one-instruction)
69-
- [πŸ’‘ Explanation](#-explanation-2)
70-
- [Deleting a list item while iterating over it](#deleting-a-list-item-while-iterating-over-it)
71-
- [πŸ’‘ Explanation:](#-explanation-13)
77+
- [πŸ’‘ Explanation](#-explanation-2)
7278
- [Explicit typecast of strings](#explicit-typecast-of-strings)
73-
- [πŸ’‘ Explanation:](#-explanation-14)
74-
- [Well, something is fishy...](#well-something-is-fishy)
75-
- [Explanation](#explanation-5)
79+
- [πŸ’‘ Explanation:](#-explanation-15)
7680
- [Class attributes and instance attributes](#class-attributes-and-instance-attributes)
77-
- [Explanation:](#explanation-1)
81+
- [Explanation:](#explanation-1)
7882
- [Catching the Exceptions!](#catching-the-exceptions)
79-
- [Explanation](#explanation-6)
80-
- [String concatenation](#string-concatenation)
81-
- [Explanination](#explanination)
82-
- [Minor Ones](#minor-ones)
83+
- [Explanation](#explanation-7)
84+
- [Midnight time doesn't exist?](#midnight-time-doesnt-exist)
85+
- [πŸ’‘ Explanation:](#-explanation-16)
8386
- [Needle in a Haystack](#needle-in-a-haystack)
84-
- [πŸ’‘ Explanation:](#-explanation-15)
87+
- [πŸ’‘ Explanation:](#-explanation-17)
88+
- [Minor Ones](#minor-ones)
8589
- [TODO: Hell of an example!](#todo-hell-of-an-example)
8690
- [Contributing](#contributing)
8791
- [Acknowledgements](#acknowledgements)

0 commit comments

Comments
Β (0)