{"id":24409054,"url":"https://github.com/codesandtags/algorithms-documentation","last_synced_at":"2025-04-12T02:04:19.942Z","repository":{"id":42653728,"uuid":"112882439","full_name":"codesandtags/algorithms-documentation","owner":"codesandtags","description":"This is a compilation about all topics related with the Algorithms that I'm learning everyday","archived":false,"fork":false,"pushed_at":"2025-01-07T04:25:04.000Z","size":9290,"stargazers_count":5,"open_issues_count":3,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-12T02:04:13.797Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codesandtags.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2017-12-02T22:38:37.000Z","updated_at":"2025-01-07T04:25:07.000Z","dependencies_parsed_at":"2024-04-15T01:56:38.213Z","dependency_job_id":null,"html_url":"https://github.com/codesandtags/algorithms-documentation","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Falgorithms-documentation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Falgorithms-documentation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Falgorithms-documentation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Falgorithms-documentation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codesandtags","download_url":"https://codeload.github.com/codesandtags/algorithms-documentation/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248505863,"owners_count":21115354,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-20T05:53:50.815Z","updated_at":"2025-04-12T02:04:19.849Z","avatar_url":"https://github.com/codesandtags.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Algorithms Documentation 2023\n\n[![Run on Repl.it](https://repl.it/badge/github/codesandtags/algorithms-documentation)](https://repl.it/github/codesandtags/algorithms-documentation)\n\n\u003e This is a compilation about all topics related with the Algorithms that I'm learning everyday\n\n## Live Code\n\n| Description    | URL                                            |\n| -------------- | ---------------------------------------------- |\n| JS Bin         | http://jsbin.com/tutacox/edit?js,console       |\n| JS Play Ground | https://stephengrider.github.io/JSPlaygrounds/ |\n| Stack Blitz    | https://stackblitz.com/                        |\n| Code Pen       | https://codepen.io/                            |\n| GreatFrontend  | https://www.greatfrontend.com/                 |\n\n## Challenges online for Algorithms and coding\n\n| Description                                                  |                                  URL                                  |\n| ------------------------------------------------------------ | :-------------------------------------------------------------------: |\n| Code fast and code well with JavaScript                      |                       http://www.codewars.com/                        |\n| Try to solve many problems using JavaScript                  |                        https://coderbyte.com/                         |\n| Solve challenges online using JavaScript                     |                    https://www.codingame.com/start                    |\n| CodeFights with JavaScript become in a Hero                  |                        https://codefights.com/                        |\n| Formulas for combinatory                                     |                 http://www.vitutor.com/pro/1/a_f.html                 |\n| HackerRank one of the best pages for challenges              |                      https://www.hackerrank.com                       |\n| Exercism                                                     |                          http://exercism.io/                          |\n| Code Chef                                                    |                https://www.codechef.com/wiki/tutorials                |\n| LeetCode is the best platform to help you enhance your skill |                         https://leetcode.com/                         |\n| LeetCode solutions explained                                 |    https://jeantimex.gitbooks.io/solve-leetcode-problems/content/     |\n| LeetCode solutions in Java                                   | https://legacy.gitbook.com/book/tenderleo/leetcode-solutions-/details |\n| Platform to take coding test for companies                   |                 https://app.codility.com/programmers/                 |\n| Freecode Camp                                                |                  https://www.freecodecamp.org/learn                   |\n\n## Fundamentals\n\n| Description               | URL                                                                                                    |\n| ------------------------- | :----------------------------------------------------------------------------------------------------- |\n| Data Structures explained | https://medium.freecodecamp.org/10-common-data-structures-explained-with-videos-exercises-aaff6c06fb2b |\n| Big O Cheat Sheet         | https://www.bigocheatsheet.com/                                                                        |\n| Algorithms Visualization  | https://www.cs.usfca.edu/~galles/visualization/Algorithms.html                                         |\n| Big O Array JavaScript    | https://dev.to/lukocastillo/time-complexity-big-0-for-javascript-array-methods-and-examples-mlg        |\n\n## Complexity Algorithms\n\n| Complexity       |  Notation   |                                                                                                                                                   Description |\n| ---------------- | :---------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------: |\n| Constant Time    |      1      |                                     No matter how many elements we're working with, the algorithm/operation/whatever will always take the same amount of time |\n| Logarithmic Time |   log(n)    | You have this if doubling the number of elements you are iterating over doesn't double the amount of work. Always assume that searching operations are log(n) |\n| Linear Time      |      n      |        Iterating through all elements in a collecion of data. If you see a foor loop spanning from 0 to array.length, you probably have 'n' or linear runtime |\n| Quasilinear Time | n \\* log(n) |  You have this if doubling the number of elements you are iterating over doesnt's the amount of work. Always assume that any sorting operation is n \\* log(n) |\n| Quadratic Time   |    2 ^ n    |                                                              Every element in a collection has to be compared to every other element. The 'handshake problem' |\n| Exponential Time |    n ^ 2    |                                                                          If you add a 'single' element to a collection, the processing power requires doubles |\n\n![Complexity Algorithms](https://images.squarespace-cdn.com/content/v1/5acbdd3a25bf024c12f4c8b4/1599000012698-NJEGM0BCGG5ZKGIWC1GU/Big%2BO%2BNotation%2BSummary%2B%281%29.jpg)\n\n![Data structures](https://miro.medium.com/max/1017/1*cQ78W0R0qxaSgYLosfYMxg.png)\n\n![Complexity Algorithms](https://he-s3.s3.amazonaws.com/media/uploads/c950295.png)\n\n## Useful things\n\n-  Because I love the time and time is gold, that's why I've decided to use Intellij as my favorite IDE. Here I will put some useful links in order to optimize the time coding.\n\n| Description          |                               URL                               |\n| -------------------- | :-------------------------------------------------------------: |\n| Basics in Intellij   | https://www.jetbrains.com/help/idea/discover-intellij-idea.html |\n| Pro Tips in Intellij | https://www.jetbrains.com/help/idea/intellij-idea-pro-tips.html |\n| IntelliJ Course      |    https://javaspecialists.teachable.com/p/intellij-wizardry    |\n\n## References\n\nI have studied these contents from the next resources:\n\n-  [Master the Coding Interview: Big Tech (FAANG) Interviews - Zero To Mastery](https://zerotomastery.io/courses/faang-interview-prep/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodesandtags%2Falgorithms-documentation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodesandtags%2Falgorithms-documentation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodesandtags%2Falgorithms-documentation/lists"}