{"id":19249397,"url":"https://github.com/dori-dev/python-algorithms","last_synced_at":"2025-04-21T12:32:13.438Z","repository":{"id":52407626,"uuid":"520961887","full_name":"dori-dev/python-algorithms","owner":"dori-dev","description":"Some algorithms write with python cleaned code and calculate Big O!","archived":false,"fork":false,"pushed_at":"2022-08-09T10:42:18.000Z","size":26,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-05T17:29:19.934Z","etag":null,"topics":["algorithms","array","cipher","cipher-algorithms","complexity","python","searching-algorithms","string"],"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/dori-dev.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}},"created_at":"2022-08-03T16:51:14.000Z","updated_at":"2023-02-16T08:42:00.000Z","dependencies_parsed_at":"2022-08-13T01:50:54.529Z","dependency_job_id":null,"html_url":"https://github.com/dori-dev/python-algorithms","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dori-dev%2Fpython-algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dori-dev%2Fpython-algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dori-dev%2Fpython-algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dori-dev%2Fpython-algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dori-dev","download_url":"https://codeload.github.com/dori-dev/python-algorithms/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223863869,"owners_count":17216234,"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":["algorithms","array","cipher","cipher-algorithms","complexity","python","searching-algorithms","string"],"created_at":"2024-11-09T18:13:56.069Z","updated_at":"2024-11-09T18:13:56.701Z","avatar_url":"https://github.com/dori-dev.png","language":"Python","readme":"# Python Algorithms\n\nSome algorithms write with **python cleaned code** and calculate **Big O**\n\n#\n\n# List of Algorithms\n\n## [Arrays](arrays/):\n\n|    algorithm     |                     source                      |\n| :--------------: | :---------------------------------------------: |\n|      Limit       |           [limit.py](arrays/limit.py)           |\n|     Top One      |         [top_one.py](arrays/top_one.py)         |\n|    Bead Sort     |       [bead_sort.py](arrays/bead_sort.py)       |\n|    Max Profit    |      [max_profit.py](arrays/max_profit.py)      |\n| Zig Zag Iterator | [zigzag_iterator.py](arrays/zigzag_iterator.py) |\n|    Move Zeros    |      [move_zeros.py](arrays/move_zeros.py)      |\n|    Remove Min    |      [remove_min.py](arrays/remove_min.py)      |\n|     Two Sum      |         [two_sum.py](arrays/two_sum.py)         |\n\n\u003cbr\u003e\n\n## [Search](search/):\n\n|    algorithm     |                      source                       |\n| :--------------: | :-----------------------------------------------: |\n|   Search Range   |     [search_range.py](search/search_range.py)     |\n|  Linear Search   |    [linear_search.py](search/linear_search.py)    |\n|  Search Insert   |    [search_insert.py](search/search_insert.py)    |\n|  Binary Search   |    [binary_search.py](search/binary_search.py)    |\n| First Occurrence | [first_occurrence.py](search/first_occurrence.py) |\n| Last Occurrence  |  [last_occurrence.py](search/last_occurrence.py)  |\n\n\u003cbr\u003e\n\n## [Ciphers](ciphers/):\n\n|    algorithm    |                    source                    |\n| :-------------: | :------------------------------------------: |\n|  Caesar Cipher  | [caesar_cipher.py](ciphers/caesar_cipher.py) |\n| a1z26 Algorithm |         [a1z26.py](ciphers/a1z26.py)         |\n|  One Time Pad   |  [one_time_pad.py](ciphers/one_time_pad.py)  |\n\n\u003cbr\u003e\n\n## [Strings](strings/):\n\n|   algorithm   |                 source                 |\n| :-----------: | :------------------------------------: |\n| Is Isomorphic | [isomorphic.py](strings/isomorphic.py) |\n| Rotate String |     [rotate.py](strings/rotate.py)     |\n\n\u003cbr\u003e\n\n## [Complexity](complexity/):\n\n|    algorithm     |                          source                           |\n| :--------------: | :-------------------------------------------------------: |\n|    Complexity    |       [0-complexity.py](complexity/0-complexity.py)       |\n|  Constant Time   |    [1-constant_time.py](complexity/1-constant_time.py)    |\n|  Logarithm Time  |   [2-logarithm_time.py](complexity/2-logarithm_time.py)   |\n|   Linear Time    |      [3-linear_time.py](complexity/3-linear_time.py)      |\n| Polynomial Time  |  [4-polynomial_time.py](complexity/4-polynomial_time.py)  |\n| Exponential Time | [5-exponential_time.py](complexity/5-exponential_time.py) |\n\n\u003cbr\u003e\n\n#\n\n# Links\n\nDownload Source Code: [Click Here](https://github.com/dori-dev/python-algorithms/archive/refs/heads/master.zip)\n\nMy Github Account: [Click Here](https://github.com/dori-dev/)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdori-dev%2Fpython-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdori-dev%2Fpython-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdori-dev%2Fpython-algorithms/lists"}