{"id":20245691,"url":"https://github.com/maestropravaler/algoritmos","last_synced_at":"2026-05-06T08:33:42.743Z","repository":{"id":190913930,"uuid":"331966878","full_name":"MaestroPravaler/Algoritmos","owner":"MaestroPravaler","description":"Estudo Sistematizado de Algoritmos com exemplos práticos e análise do consumo de tempo X memória.","archived":false,"fork":false,"pushed_at":"2021-01-29T00:13:17.000Z","size":141,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-18T05:43:36.410Z","etag":null,"topics":["algorithms","big-o","challenge","elixir","examples","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/MaestroPravaler.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}},"created_at":"2021-01-22T14:18:05.000Z","updated_at":"2021-04-25T02:04:13.000Z","dependencies_parsed_at":"2023-08-27T04:38:36.436Z","dependency_job_id":null,"html_url":"https://github.com/MaestroPravaler/Algoritmos","commit_stats":null,"previous_names":["maestropravaler/algoritmos"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MaestroPravaler/Algoritmos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaestroPravaler%2FAlgoritmos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaestroPravaler%2FAlgoritmos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaestroPravaler%2FAlgoritmos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaestroPravaler%2FAlgoritmos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MaestroPravaler","download_url":"https://codeload.github.com/MaestroPravaler/Algoritmos/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaestroPravaler%2FAlgoritmos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32684685,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["algorithms","big-o","challenge","elixir","examples","python"],"created_at":"2024-11-14T09:23:15.386Z","updated_at":"2026-05-06T08:33:42.708Z","avatar_url":"https://github.com/MaestroPravaler.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ALGORITMOS\nEstudos sistematizados sobre algoritmos.\n## [BIG 0](https://github.com/Robson-Maestro/Algoritmos/tree/master/BIG_O)\n1. [Tempo Constante O(1)](https://github.com/Robson-Maestro/Algoritmos/tree/master/BIG_O/01_Tempo_Constante.ipynb)\n2. [Tempo Linear O(n)](https://github.com/Robson-Maestro/Algoritmos/tree/master/BIG_O/02_Tempo_Linear.ipynb)\n3. [Tempo Logarítmico 0(log n)](https://github.com/Robson-Maestro/Algoritmos/tree/master/BIG_O/03_Tempo_Logaritmico.ipynb)\n4. [Tempo Quadrático O(n^2)](https://github.com/Robson-Maestro/Algoritmos/tree/master/BIG_O/04_Tempo_Quadrático.ipynb)\n5. [Tempo Expoencial O(2^n)](https://github.com/Robson-Maestro/Algoritmos/tree/master/BIG_O/05_Tempo_Expoencial.ipynb)\n6. [Tempo Fatorial O(n!)](https://github.com/Robson-Maestro/Algoritmos/tree/master/BIG_O/06_Tempo_Fatorial.ipynb)\n\n![](./assets/images/bigo.png)\n\n## [HEURÍSTICAS E TÉCNICAS (Desafios)](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS)\nResolvidos e classificados quanto ao BIG_O em python.\n1. [Compare_Binary_Trees.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Compare_Binary_Trees.py)\n2. [Created_Linked_list.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Created_Linked_list.py)\n3. [Decode_Strings.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Decode_Strins.py)\n4. [Detect_Circular_Linked_List.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Detect_Circular_Linked_List.py)\n5. [Four_Sum.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Four_Sum.py)\n6. [Longest_Increasing_Path_In_A_Matrix.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Longest_Increasing_Path_In_A_Matrix.py)\n7. [Longest_Substring_Without_Repeating_Characters.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Longest_Substring_Without_Repeating_Characters.py)\n8. [Max_Consecutives_Ones.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Max_Consecutives_Ones.py)\n9. [Maximum_Path_Sum.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Maximum_Path_Sum.py)\n10. [Minimum_Depth_Of_Binary_Tree.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Minimum_Depth_Of_Binary_Tree.py)\n11. [Path_Sum_2.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Path_Sum_2.py)\n12. [Three_Sum.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Three_Sum.py)\n13. [Two_Sum.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Two_Sum.py)\n14. [Word_Search.py](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/Word_Search.py)\n\n### Resolução dos desafios utiliando o [ELIXIR](https://github.com/Robson-Maestro/Algoritmos/tree/master/HEURISTICS/desafios_elixir/)\n\n## [Agradecimentos Especiais]\nAo Tiago Brito e seu projeto [AlgoMania](https://algomania.com.br/) por compartilhar seus conhecimentos de forma simples e eficaz e permitir a divulgação deste conteúdo.\n\n![](./assets/images/logoalgo.png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaestropravaler%2Falgoritmos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaestropravaler%2Falgoritmos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaestropravaler%2Falgoritmos/lists"}