Status Updates From Grokking Algorithms An Illu...
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People by
Status Updates Showing 61-90 of 118
Sergiu Luca
is finished
Erste Kapitel: Einführung in Algorithmen
Sehr gute Erläuterung der Landau-Notation (a.k.a. engl. Big-O-Notation) und der verschiedenen Laufzeiten von Algorithmen - lineare, logarithmische, faktorielle Laufzeiten.
— Jan 24, 2022 07:14AM
Add a comment
Sehr gute Erläuterung der Landau-Notation (a.k.a. engl. Big-O-Notation) und der verschiedenen Laufzeiten von Algorithmen - lineare, logarithmische, faktorielle Laufzeiten.
Modesto Figuereo
is 74% done
Seamless and REALLY HIGH level introduction on how kinda simple algorithms and data structures concepts can be apply to machine learning
— Jan 17, 2022 08:13AM
Add a comment
Modesto Figuereo
is 38% done
So far the book has been very good explaining concepts that usually are hard to grasp, this is achieved by the use of really good analogies and ilustrations.
— Jan 14, 2022 04:29AM
Add a comment
Ahmed Mohamed
is on page 36 of 256
Didn't add to me that much in the first two chapters.
But the writer have an awesome way of simplifying complex concepts.
Take aways:
Big O doesn't mean e.g how many times we touched an object.
It measures the rate of growth in either time or space compared to the growth in our input.
— Dec 19, 2021 02:36PM
Add a comment
But the writer have an awesome way of simplifying complex concepts.
Take aways:
Big O doesn't mean e.g how many times we touched an object.
It measures the rate of growth in either time or space compared to the growth in our input.
twodeux
is 28% done
Call stacks, Recursion, Quicksort, Elucid’s Algorithm, Functional programming — and a peak at Haskell language that has no loops 🤯
— Dec 03, 2021 10:46PM
Add a comment
twodeux
is 20% done
Linked and arrays as data types — what are these known as in Swift structures
— Dec 02, 2021 05:14AM
Add a comment
Kyle Maxwell
is on page 37 of 256
Finished first two chapters, implementing using Go
— Nov 19, 2021 05:32PM
Add a comment
M
is on page 90 of 256
Really fun read so far. Bonus if it also happens to make my abysmal coding skills even slightly better
— Oct 01, 2021 04:02AM
Add a comment
Sophie
is on page 36 of 256
Arrays:
1. all the elements are stored right next to each other.
2. allow fast reads.
3. all elements should be the same type.
Linked lists:
1. elements are strewn all over, and one elements stores the address of the next one.
2. allow fast inserts and deletes.
— Sep 13, 2021 03:23PM
Add a comment
1. all the elements are stored right next to each other.
2. allow fast reads.
3. all elements should be the same type.
Linked lists:
1. elements are strewn all over, and one elements stores the address of the next one.
2. allow fast inserts and deletes.
Sophie
is on page 30 of 256
Two types of access:
1. Random access - arrays - faster at reads
2. Sequential access - linked lists
— Sep 12, 2021 04:10PM
Add a comment
1. Random access - arrays - faster at reads
2. Sequential access - linked lists
Sophie
is on page 16 of 256
Four main takeaways before ch. 4:
1. Run time of algorithms is expressed in Big O notation.
2. Algorithm speed is measured in growth of the number of operations, not in seconds.
3. As the size of the input increases, the run time of an algorithm increases super quick.
4. O(log n) is faster than O(n), and it gets way faster as the list of items grows.
— Aug 27, 2021 05:26PM
Add a comment
1. Run time of algorithms is expressed in Big O notation.
2. Algorithm speed is measured in growth of the number of operations, not in seconds.
3. As the size of the input increases, the run time of an algorithm increases super quick.
4. O(log n) is faster than O(n), and it gets way faster as the list of items grows.
Sophie
is on page 8 of 256
Binary search only works when your list is in sorted order.
— Aug 23, 2021 02:51PM
Add a comment
Sophie
is starting
An algorithm is a set of instructions for accomplishing a task. Every piece of code could be called an algorithm.
— Aug 23, 2021 01:36PM
Add a comment
Presto
is 35% done
Eventhough I have previously studied the concepts before,the way concepts are explained are simply lucid,never before I understood divide and conquer and its applications in quicksort and other algorithms this clearly!
— Jun 19, 2021 08:18AM
Add a comment
Presto
is 25% done
Perhaps got the best explanations of recursion eventhough i studied that before !
— Jun 01, 2021 09:09AM
Add a comment
Tanvir Sady
is on page 21 of 256
Complex ideas explained visually with simple examples makes the read more interesting. Back-cover of the book I found a quote which , I think, is the best description of the book--"Do you ever treat yourself learning algorithm in the same way that you read your fav novel?" its really close to that.If I didn't find the book, my quest for learning algorithm may have to take Big O(n!) instead of Big O(log n). huh!
— May 20, 2021 09:52PM
Add a comment
Norent Khy
is on page 21 of 256
The author's writing language is clear. It gets to the heart of the matter.
— Apr 04, 2021 02:32AM
Add a comment
Raúl
is 93% done
Chapter 11 briefs of interesting topics
Trees
Inverted index
Transformada de fourier
Parallel algorithms
Mapreduce
Bloom filters
Sha algorithms
Diffie hellman
Linear programming
— Feb 02, 2021 09:47AM
Add a comment
Trees
Inverted index
Transformada de fourier
Parallel algorithms
Mapreduce
Bloom filters
Sha algorithms
Diffie hellman
Linear programming
Raúl
is on page 201 of 256
Chapter 9
KNN k-nearest neighbours
Classification
Regresión predict a response
Intro to AI
— Feb 02, 2021 09:35AM
Add a comment
KNN k-nearest neighbours
Classification
Regresión predict a response
Intro to AI
Raúl
is on page 160 of 256
Chapter 8
Greedy algoritmo
Sets
NP problems
— Feb 02, 2021 09:04AM
Add a comment
Greedy algoritmo
Sets
NP problems
Raúl
is on page 140 of 256
Chapter 7
Weighted graphs
Directed graphs
DAG directed acycled graphs
Dijkstra’s algorithm
Negative weights
— Feb 02, 2021 02:31AM
Add a comment
Weighted graphs
Directed graphs
DAG directed acycled graphs
Dijkstra’s algorithm
Negative weights
Raúl
is on page 114 of 256
Chapter 6
Graphs
Breadth first search
Queues FIFO vs Stacks LIFO
— Feb 02, 2021 02:11AM
Add a comment
Graphs
Breadth first search
Queues FIFO vs Stacks LIFO





