Add guide for asymptotic notation

pull/1657/head
Kamran Ahmed 5 years ago
parent f2aa0f8544
commit e0abf4ec21
  1. 22
      content/guides.json
  2. 5
      content/guides/asymptotic-notation.md
  3. 2
      content/guides/random-numbers.md
  4. 2
      content/roadmaps.json
  5. BIN
      public/guides/asymptotic-notation.png
  6. 10
      public/sitemap.xml

@ -1,13 +1,13 @@
[ [
{ {
"title": "Random Numbers: Are they?", "title": "Asymptotic Notation",
"description": "Learn how they are generated and why they may not be truly random.", "description": "Learn the basics of measuring the time and space complexity of algorithms",
"url": "/guides/random-numbers", "url": "/guides/asymptotic-notation",
"fileName": "random-numbers", "fileName": "asymptotic-notation",
"featured": true, "featured": true,
"author": "kamranahmedse", "author": "kamranahmedse",
"updatedAt": "2020-03-15T15:48:21.191Z", "updatedAt": "2020-04-03T15:48:21.191Z",
"createdAt": "2020-03-15T15:48:21.191Z" "createdAt": "2020-04-03T15:48:21.191Z"
}, },
{ {
"title": "Big-O Notation", "title": "Big-O Notation",
@ -16,6 +16,16 @@
"fileName": "big-o-notation", "fileName": "big-o-notation",
"featured": true, "featured": true,
"author": "kamranahmedse", "author": "kamranahmedse",
"updatedAt": "2020-03-15T15:48:21.191Z",
"createdAt": "2020-03-15T15:48:21.191Z"
},
{
"title": "Random Numbers: Are they?",
"description": "Learn how they are generated and why they may not be truly random.",
"url": "/guides/random-numbers",
"fileName": "random-numbers",
"featured": true,
"author": "kamranahmedse",
"updatedAt": "2020-03-14T15:48:21.191Z", "updatedAt": "2020-03-14T15:48:21.191Z",
"createdAt": "2020-03-14T15:48:21.191Z" "createdAt": "2020-03-14T15:48:21.191Z"
}, },

@ -0,0 +1,5 @@
Asymptotic notation is the standard way of measuring the time and space that an algorithm will consume as the input grows. In one of my last guides, I covered "Big-O notation" and a lot of you asked for a similar one for Asymptotic notation. You can find the [previous guide here](/guides/big-o-notation).
![](/guides/asymptotic-notation.png)
Here is the [original tweet](https://twitter.com/kamranahmedse/status/1243861514907418624) where this image was posted.

@ -1,3 +1,5 @@
Random numbers are everywhere from computer games to lottery systems, graphics software, statistical sampling, computer simulation and cryptography. Graphic below is a quick explanation to how the random numbers are generated and why they may not be truly random. Random numbers are everywhere from computer games to lottery systems, graphics software, statistical sampling, computer simulation and cryptography. Graphic below is a quick explanation to how the random numbers are generated and why they may not be truly random.
![](/guides/random-numbers.png) ![](/guides/random-numbers.png)
Here is the [original tweet](https://twitter.com/kamranahmedse/status/1237851549302312962) where this image was posted.

@ -43,7 +43,7 @@
"2018", "2018",
"2017" "2017"
], ],
"contributorsCount": 1, "contributorsCount": 2,
"contributorsUrl": "/frontend/contributors", "contributorsUrl": "/frontend/contributors",
"url": "/frontend", "url": "/frontend",
"sidebar": {} "sidebar": {}

Binary file not shown.

After

Width:  |  Height:  |  Size: 987 KiB

@ -31,14 +31,20 @@
<priority>1.0</priority> <priority>1.0</priority>
</url> </url>
<url> <url>
<loc>https://roadmap.sh/guides/random-numbers</loc> <loc>https://roadmap.sh/guides/asymptotic-notation</loc>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<lastmod>2020-03-15T15:48:21.191Z</lastmod> <lastmod>2020-04-03T15:48:21.191Z</lastmod>
<priority>1.0</priority> <priority>1.0</priority>
</url> </url>
<url> <url>
<loc>https://roadmap.sh/guides/big-o-notation</loc> <loc>https://roadmap.sh/guides/big-o-notation</loc>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<lastmod>2020-03-15T15:48:21.191Z</lastmod>
<priority>1.0</priority>
</url>
<url>
<loc>https://roadmap.sh/guides/random-numbers</loc>
<changefreq>monthly</changefreq>
<lastmod>2020-03-14T15:48:21.191Z</lastmod> <lastmod>2020-03-14T15:48:21.191Z</lastmod>
<priority>1.0</priority> <priority>1.0</priority>
</url> </url>

Loading…
Cancel
Save