├── .gitignore ├── README.md ├── bonus - fast convex hull.ipynb ├── day 00 - logo.ipynb ├── day 01 - hanoi tower.ipynb ├── day 02 - matrix chain multiplication.ipynb ├── day 03 - next permutation.ipynb ├── day 04 - counting 1-bits.ipynb ├── day 05 - eratosthenes sieve.ipynb ├── day 06 - postfix notation.ipynb ├── day 07 - binary addition FSA.ipynb ├── day 08 - binary search.ipynb ├── day 09 - monte carlo - pi.ipynb ├── day 10 - karatsuba multiplication.ipynb ├── day 11 - McCarthy 91.ipynb ├── day 12 - roots of polynomial.ipynb ├── day 13 - extended euclidean algorithm.ipynb ├── day 14 - huffman codes.ipynb ├── day 15 - breaking OTP.ipynb ├── day 16 - no-condition swap.ipynb ├── day 17 - perceptron.ipynb ├── day 18 - monopoly.ipynb ├── day 19 - counting inversions.ipynb ├── day 20 - linearithmic multiplication.ipynb ├── day 21 - k-means.ipynb ├── day 22 - determinant.ipynb ├── day 23 - sudoku.ipynb ├── day 24 - closest pair.ipynb ├── day 25 - conjugate gradients.ipynb ├── day 26 - karger's mincut.ipynb ├── day 27 - spiral matrix.ipynb ├── day 28 - convex hull.ipynb ├── day 29 - string searching.ipynb ├── day 30 - strassen multiplication.ipynb ├── day 31 - timeit.ipynb ├── day 32 - pagerank.ipynb ├── day 33 - reservoir sampling.ipynb ├── day 34 - aho-corasick.ipynb ├── day 35 - median.ipynb ├── day 36 - bulls and cows.ipynb ├── day 37 - longest common subsequence.ipynb ├── day 38 - burrows-wheeler.ipynb ├── day 39 - 4sum.ipynb ├── day 40 - counting ones.ipynb ├── day 41 - union-find.ipynb ├── day 42 - hamming codes.ipynb ├── day 43 - shuffle.ipynb ├── day 44 - gradient approximation.ipynb ├── day 45 - binary search tree.ipynb ├── day 46 - bézier curve.ipynb ├── day 47 - factoradic.ipynb ├── day 48 - dijkstra.ipynb ├── day 49 - ford-fulkerson.ipynb ├── day 50 - game of life.ipynb ├── day 51 - rabin-miller.ipynb ├── day 52 - RSA.ipynb ├── day 53 - RSA encryption scheme.ipynb ├── day 54 - longest unique sequence.ipynb ├── day 55 - quincunx.ipynb ├── day 56 - lzw.ipynb ├── day 57 - quicksort.ipynb ├── day 58 - integer exponentation.ipynb ├── day 59 - colored tiling.ipynb ├── day 60 - bloom filter.ipynb ├── day 61 - hanoi tower II.ipynb ├── day 62 - linked-list cycle.ipynb ├── day 63 - zig-zag.ipynb ├── day 64 - k-clique.ipynb ├── day 65 - floyd-warshall.ipynb ├── day 66 - gram-schmidt.ipynb ├── day 67 - linked-list mergesort.ipynb ├── day 68 - gale-shapley.ipynb ├── day 69 - rmsprop.ipynb ├── day 70 - deadlock.ipynb ├── day 71 - hashtable - chaining.ipynb ├── day 72 - hashtable - open addressing.ipynb ├── day 73 - bresenhams line.ipynb ├── day 74 - google interview question.ipynb ├── day 75 - merkles puzzles.ipynb ├── day 76 - 2-3 tree.ipynb ├── day 77 - unification.ipynb ├── day 78 - horn-satifiability.ipynb ├── day 79 - logistic regression.ipynb ├── day 80 - hopfield net.ipynb ├── day 81 - topological sort.ipynb ├── day 82 - flood fill.ipynb ├── day 83 - breaking AES.ipynb ├── day 84 - maze generation.ipynb ├── day 85 - coin success runs.ipynb ├── day 86 - binary heap.ipynb ├── day 87 - gray code.ipynb ├── day 88 - perlin noise.ipynb ├── day 89 - bipartiteness.ipynb ├── day 90 - simple nim - AI.ipynb ├── day 91 - variations.ipynb ├── day 92 - PCA.ipynb ├── day 93 - first and follow.ipynb ├── day 94 - earley parser.ipynb ├── day 95 - strongly connected components.ipynb ├── day 96 - floyd-steinberg.ipynb ├── day 97 - locally weighted regression.ipynb ├── day 98 - romberg integration.ipynb ├── day 99 - simplex.ipynb ├── day I00 - segmented eratosthenes sieve.ipynb └── resource ├── day 96 - eagle.jpg ├── day 96 - valinka.jpg └── day 96 - winter.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/README.md -------------------------------------------------------------------------------- /bonus - fast convex hull.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/bonus - fast convex hull.ipynb -------------------------------------------------------------------------------- /day 00 - logo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 00 - logo.ipynb -------------------------------------------------------------------------------- /day 01 - hanoi tower.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 01 - hanoi tower.ipynb -------------------------------------------------------------------------------- /day 02 - matrix chain multiplication.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 02 - matrix chain multiplication.ipynb -------------------------------------------------------------------------------- /day 03 - next permutation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 03 - next permutation.ipynb -------------------------------------------------------------------------------- /day 04 - counting 1-bits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 04 - counting 1-bits.ipynb -------------------------------------------------------------------------------- /day 05 - eratosthenes sieve.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 05 - eratosthenes sieve.ipynb -------------------------------------------------------------------------------- /day 06 - postfix notation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 06 - postfix notation.ipynb -------------------------------------------------------------------------------- /day 07 - binary addition FSA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 07 - binary addition FSA.ipynb -------------------------------------------------------------------------------- /day 08 - binary search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 08 - binary search.ipynb -------------------------------------------------------------------------------- /day 09 - monte carlo - pi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 09 - monte carlo - pi.ipynb -------------------------------------------------------------------------------- /day 10 - karatsuba multiplication.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 10 - karatsuba multiplication.ipynb -------------------------------------------------------------------------------- /day 11 - McCarthy 91.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 11 - McCarthy 91.ipynb -------------------------------------------------------------------------------- /day 12 - roots of polynomial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 12 - roots of polynomial.ipynb -------------------------------------------------------------------------------- /day 13 - extended euclidean algorithm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 13 - extended euclidean algorithm.ipynb -------------------------------------------------------------------------------- /day 14 - huffman codes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 14 - huffman codes.ipynb -------------------------------------------------------------------------------- /day 15 - breaking OTP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 15 - breaking OTP.ipynb -------------------------------------------------------------------------------- /day 16 - no-condition swap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 16 - no-condition swap.ipynb -------------------------------------------------------------------------------- /day 17 - perceptron.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 17 - perceptron.ipynb -------------------------------------------------------------------------------- /day 18 - monopoly.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 18 - monopoly.ipynb -------------------------------------------------------------------------------- /day 19 - counting inversions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 19 - counting inversions.ipynb -------------------------------------------------------------------------------- /day 20 - linearithmic multiplication.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 20 - linearithmic multiplication.ipynb -------------------------------------------------------------------------------- /day 21 - k-means.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 21 - k-means.ipynb -------------------------------------------------------------------------------- /day 22 - determinant.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 22 - determinant.ipynb -------------------------------------------------------------------------------- /day 23 - sudoku.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 23 - sudoku.ipynb -------------------------------------------------------------------------------- /day 24 - closest pair.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 24 - closest pair.ipynb -------------------------------------------------------------------------------- /day 25 - conjugate gradients.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 25 - conjugate gradients.ipynb -------------------------------------------------------------------------------- /day 26 - karger's mincut.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 26 - karger's mincut.ipynb -------------------------------------------------------------------------------- /day 27 - spiral matrix.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 27 - spiral matrix.ipynb -------------------------------------------------------------------------------- /day 28 - convex hull.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 28 - convex hull.ipynb -------------------------------------------------------------------------------- /day 29 - string searching.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 29 - string searching.ipynb -------------------------------------------------------------------------------- /day 30 - strassen multiplication.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 30 - strassen multiplication.ipynb -------------------------------------------------------------------------------- /day 31 - timeit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 31 - timeit.ipynb -------------------------------------------------------------------------------- /day 32 - pagerank.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 32 - pagerank.ipynb -------------------------------------------------------------------------------- /day 33 - reservoir sampling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 33 - reservoir sampling.ipynb -------------------------------------------------------------------------------- /day 34 - aho-corasick.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 34 - aho-corasick.ipynb -------------------------------------------------------------------------------- /day 35 - median.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 35 - median.ipynb -------------------------------------------------------------------------------- /day 36 - bulls and cows.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 36 - bulls and cows.ipynb -------------------------------------------------------------------------------- /day 37 - longest common subsequence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 37 - longest common subsequence.ipynb -------------------------------------------------------------------------------- /day 38 - burrows-wheeler.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 38 - burrows-wheeler.ipynb -------------------------------------------------------------------------------- /day 39 - 4sum.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 39 - 4sum.ipynb -------------------------------------------------------------------------------- /day 40 - counting ones.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 40 - counting ones.ipynb -------------------------------------------------------------------------------- /day 41 - union-find.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 41 - union-find.ipynb -------------------------------------------------------------------------------- /day 42 - hamming codes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 42 - hamming codes.ipynb -------------------------------------------------------------------------------- /day 43 - shuffle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 43 - shuffle.ipynb -------------------------------------------------------------------------------- /day 44 - gradient approximation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 44 - gradient approximation.ipynb -------------------------------------------------------------------------------- /day 45 - binary search tree.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 45 - binary search tree.ipynb -------------------------------------------------------------------------------- /day 46 - bézier curve.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 46 - bézier curve.ipynb -------------------------------------------------------------------------------- /day 47 - factoradic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 47 - factoradic.ipynb -------------------------------------------------------------------------------- /day 48 - dijkstra.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 48 - dijkstra.ipynb -------------------------------------------------------------------------------- /day 49 - ford-fulkerson.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 49 - ford-fulkerson.ipynb -------------------------------------------------------------------------------- /day 50 - game of life.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 50 - game of life.ipynb -------------------------------------------------------------------------------- /day 51 - rabin-miller.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 51 - rabin-miller.ipynb -------------------------------------------------------------------------------- /day 52 - RSA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 52 - RSA.ipynb -------------------------------------------------------------------------------- /day 53 - RSA encryption scheme.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 53 - RSA encryption scheme.ipynb -------------------------------------------------------------------------------- /day 54 - longest unique sequence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 54 - longest unique sequence.ipynb -------------------------------------------------------------------------------- /day 55 - quincunx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 55 - quincunx.ipynb -------------------------------------------------------------------------------- /day 56 - lzw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 56 - lzw.ipynb -------------------------------------------------------------------------------- /day 57 - quicksort.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 57 - quicksort.ipynb -------------------------------------------------------------------------------- /day 58 - integer exponentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 58 - integer exponentation.ipynb -------------------------------------------------------------------------------- /day 59 - colored tiling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 59 - colored tiling.ipynb -------------------------------------------------------------------------------- /day 60 - bloom filter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 60 - bloom filter.ipynb -------------------------------------------------------------------------------- /day 61 - hanoi tower II.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 61 - hanoi tower II.ipynb -------------------------------------------------------------------------------- /day 62 - linked-list cycle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 62 - linked-list cycle.ipynb -------------------------------------------------------------------------------- /day 63 - zig-zag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 63 - zig-zag.ipynb -------------------------------------------------------------------------------- /day 64 - k-clique.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 64 - k-clique.ipynb -------------------------------------------------------------------------------- /day 65 - floyd-warshall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 65 - floyd-warshall.ipynb -------------------------------------------------------------------------------- /day 66 - gram-schmidt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 66 - gram-schmidt.ipynb -------------------------------------------------------------------------------- /day 67 - linked-list mergesort.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 67 - linked-list mergesort.ipynb -------------------------------------------------------------------------------- /day 68 - gale-shapley.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 68 - gale-shapley.ipynb -------------------------------------------------------------------------------- /day 69 - rmsprop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 69 - rmsprop.ipynb -------------------------------------------------------------------------------- /day 70 - deadlock.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 70 - deadlock.ipynb -------------------------------------------------------------------------------- /day 71 - hashtable - chaining.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 71 - hashtable - chaining.ipynb -------------------------------------------------------------------------------- /day 72 - hashtable - open addressing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 72 - hashtable - open addressing.ipynb -------------------------------------------------------------------------------- /day 73 - bresenhams line.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 73 - bresenhams line.ipynb -------------------------------------------------------------------------------- /day 74 - google interview question.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 74 - google interview question.ipynb -------------------------------------------------------------------------------- /day 75 - merkles puzzles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 75 - merkles puzzles.ipynb -------------------------------------------------------------------------------- /day 76 - 2-3 tree.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 76 - 2-3 tree.ipynb -------------------------------------------------------------------------------- /day 77 - unification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 77 - unification.ipynb -------------------------------------------------------------------------------- /day 78 - horn-satifiability.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 78 - horn-satifiability.ipynb -------------------------------------------------------------------------------- /day 79 - logistic regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 79 - logistic regression.ipynb -------------------------------------------------------------------------------- /day 80 - hopfield net.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 80 - hopfield net.ipynb -------------------------------------------------------------------------------- /day 81 - topological sort.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 81 - topological sort.ipynb -------------------------------------------------------------------------------- /day 82 - flood fill.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 82 - flood fill.ipynb -------------------------------------------------------------------------------- /day 83 - breaking AES.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 83 - breaking AES.ipynb -------------------------------------------------------------------------------- /day 84 - maze generation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 84 - maze generation.ipynb -------------------------------------------------------------------------------- /day 85 - coin success runs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 85 - coin success runs.ipynb -------------------------------------------------------------------------------- /day 86 - binary heap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 86 - binary heap.ipynb -------------------------------------------------------------------------------- /day 87 - gray code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 87 - gray code.ipynb -------------------------------------------------------------------------------- /day 88 - perlin noise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 88 - perlin noise.ipynb -------------------------------------------------------------------------------- /day 89 - bipartiteness.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 89 - bipartiteness.ipynb -------------------------------------------------------------------------------- /day 90 - simple nim - AI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 90 - simple nim - AI.ipynb -------------------------------------------------------------------------------- /day 91 - variations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 91 - variations.ipynb -------------------------------------------------------------------------------- /day 92 - PCA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 92 - PCA.ipynb -------------------------------------------------------------------------------- /day 93 - first and follow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 93 - first and follow.ipynb -------------------------------------------------------------------------------- /day 94 - earley parser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 94 - earley parser.ipynb -------------------------------------------------------------------------------- /day 95 - strongly connected components.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 95 - strongly connected components.ipynb -------------------------------------------------------------------------------- /day 96 - floyd-steinberg.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 96 - floyd-steinberg.ipynb -------------------------------------------------------------------------------- /day 97 - locally weighted regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 97 - locally weighted regression.ipynb -------------------------------------------------------------------------------- /day 98 - romberg integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 98 - romberg integration.ipynb -------------------------------------------------------------------------------- /day 99 - simplex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day 99 - simplex.ipynb -------------------------------------------------------------------------------- /day I00 - segmented eratosthenes sieve.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/day I00 - segmented eratosthenes sieve.ipynb -------------------------------------------------------------------------------- /resource/day 96 - eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/resource/day 96 - eagle.jpg -------------------------------------------------------------------------------- /resource/day 96 - valinka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/resource/day 96 - valinka.jpg -------------------------------------------------------------------------------- /resource/day 96 - winter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coells/100days/HEAD/resource/day 96 - winter.jpg --------------------------------------------------------------------------------