/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

initialcommit.com
| | adrianmejia.com
2.4 parsecs away

Travel
| | JavaScript tutorials and web development articles including topics like NodeJS, Angular, VueJS, Data Structures and Algorithms.
| | www.hillelwayne.com
2.9 parsecs away

Travel
| | A (directed) graph is a set of nodes, connected by arrows (edges). The nodes and edges may contain data. Here are some graphs: All graphs made with graphviz (source) Graphs are ubiquitous in software engineering: Package dependencies form directed graphs, as do module imports. The internet is a graph of links between webpages. Model checkers analyze software by exploring the "state space" of all possible configurations.
| | miparnisariblog.wordpress.com
3.6 parsecs away

Travel
| | PatternDescriptionExample usagesWorks onTwo pointersIterate over an array or multiple arrays to achieve some goal, faster than O(n^2)Finding palindromes, merging two arrays, subsequences in stringsUnsorted arrays, sorted arrays, stringsSliding windowFind a subarray that satisfies some numerical constraint. (If the constraint involves counting, use a hashmap).Add elements from the right until the constraint is broken, then remove...
| | schmidhuberj.de
10.8 parsecs away

Travel
| In this blog post, I will talk about dynamic graphs, which will be the area of work in which I will start writing my master's thesis soon. While this blog post will be more mathematical than any of my other blog posts so far, I tried to make everything as beginner-friendly as possible. Even if you don't have any knowledge about theoretical computer science, or you are just getting started, this blog post should be understandable.