Status Updates From Grokking Algorithms An Illu...

Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People
by


Status Updates Showing 61-90 of 120

order by

Presto
Presto is 44% done
Phew, made some progress after a long, Hash Tables are cool DS!
Feb 06, 2022 01:16AM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Sergiu Luca
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.
Zweite Kapitel Selectionsort
Verkettete Listen vs Arrays
Selectionsort O(n x n)
Dritte Kapitel Rekursion
Jan 26, 2022 01:44PM Add a comment
Algorithmen kapieren: Visuell lernen und verstehen. Ein illustrierter Leitfaden für Programmierer

Sergiu Luca
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
Algorithmen kapieren: Visuell lernen und verstehen. Ein illustrierter Leitfaden für Programmierer

Modesto Figuereo
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
Grokking Algorithms: An illustrated guide for programmers and other curious people

Modesto Figuereo
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
Grokking Algorithms: An illustrated guide for programmers and other curious people

Ahmed Mohamed
Ahmed Mohamed is on page 51 of 256
Read more about Call stack
Dec 20, 2021 01:55PM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Ahmed Mohamed
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

twodeux
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

twodeux
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

twodeux
twodeux is 15% done
Big O Notation concept presented
Nov 30, 2021 11:03PM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Kyle Maxwell
Kyle Maxwell is on page 37 of 256
Finished first two chapters, implementing using Go
Nov 19, 2021 05:32PM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

M
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Sophie
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Sophie
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Sophie
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Shhhhh Ahhhhh
Shhhhh Ahhhhh is 99% done
Done 8/26/21, will review soon.
Aug 26, 2021 06:59PM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Sophie
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Sophie
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Presto
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Presto
Presto is 25% done
Perhaps got the best explanations of recursion eventhough i studied that before !
Jun 01, 2021 09:09AM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Tanvir Sady
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Norent Khy
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Reemi Reader
Reemi Reader is on page 21 of 256
amazing till now!
Feb 06, 2021 08:18AM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Raúl
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Raúl
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Raúl
Raúl is on page 186 of 256
Chapter 9
Dynamic programming
Feb 02, 2021 09:24AM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Raúl
Raúl is on page 160 of 256
Chapter 8
Greedy algoritmo
Sets
NP problems
Feb 02, 2021 09:04AM Add a comment
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Raúl
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People

Raúl
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
Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People