{"id":22432086,"url":"https://github.com/akashkobal/hackerrank-python-sloution","last_synced_at":"2026-03-16T19:02:32.297Z","repository":{"id":221461591,"uuid":"754443148","full_name":"AkashKobal/hackerrank-python-sloution","owner":"AkashKobal","description":"This compilation of GitHub repositories provides extensive solutions to HackerRank challenges, catering to Python programmers of varying skill levels. 115 HackerRank Challenges, Python Domain Challenges, Competitive Programming Exercises, 30 Days of Code Challenges, Comprehensive Resource.","archived":false,"fork":false,"pushed_at":"2024-03-12T17:09:10.000Z","size":187,"stargazers_count":5,"open_issues_count":0,"forks_count":8,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-03-12T18:31:20.933Z","etag":null,"topics":["algorithms","code-challenge","coding","coding-challenge","coding-interviews","dsa","hackerrank","hackerrank-solutions","hackerrank-solutions-python","interview-preparation","interview-questions","problem-solving","programming","python","python-hackerrank","python-hackerrank-solutions","python-programming","software-development","tech"],"latest_commit_sha":null,"homepage":"https://theakash.co.in","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AkashKobal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-02-08T03:58:24.000Z","updated_at":"2024-03-05T19:29:08.000Z","dependencies_parsed_at":"2024-02-08T05:24:31.148Z","dependency_job_id":"b67de10b-0a3d-491a-bc38-ffbd5c4a96f4","html_url":"https://github.com/AkashKobal/hackerrank-python-sloution","commit_stats":null,"previous_names":["akashkobal/hackerrank-python-sloution"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AkashKobal%2Fhackerrank-python-sloution","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AkashKobal%2Fhackerrank-python-sloution/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AkashKobal%2Fhackerrank-python-sloution/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AkashKobal%2Fhackerrank-python-sloution/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AkashKobal","download_url":"https://codeload.github.com/AkashKobal/hackerrank-python-sloution/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228377722,"owners_count":17910449,"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","code-challenge","coding","coding-challenge","coding-interviews","dsa","hackerrank","hackerrank-solutions","hackerrank-solutions-python","interview-preparation","interview-questions","problem-solving","programming","python","python-hackerrank","python-hackerrank-solutions","python-programming","software-development","tech"],"created_at":"2024-12-05T22:10:31.835Z","updated_at":"2026-03-16T19:02:32.217Z","avatar_url":"https://github.com/AkashKobal.png","language":null,"readme":"# hackerrank-python-sloution \n## Say \"Hello, World!\" With Python   \n\n![alt text](https://github.com/AkashKobal/hackerrank-python-sloution/blob/main/questions/Say%20Hello%2C%20World!%20With%20Python.png)\n```python\nprint(\"Hello, World!\")  \n```   \n  \n## Python If-Else \n\n![alt text](https://github.com/AkashKobal/hackerrank-python-sloution/blob/main/questions/Python%20If-Else.png)\n```python \nimport math\nimport os\nimport random\nimport re\nimport sys\n\nif __name__ == '__main__':\n    n = int(input().strip())\nif n % 2 != 0:  \n    print(\"Weird\")  \nelif n in range(2, 6):  \n    print(\"Not Weird\")  \nelif n in range(6, 21):  \n    print(\"Weird\")  \nelse:  \n    print(\"Not Weird\") \n```\n## Array reverse \n![alt text](https://github.com/AkashKobal/hackerrank-python-sloution/blob/main/questions/reverse%20array.png)\n```python\n\nimport math\nimport os\nimport random\nimport re\nimport sys\n\n#\n# Complete the 'reverseArray' function below.\n#\n# The function is expected to return an INTEGER_ARRAY.\n# The function accepts INTEGER_ARRAY a as parameter.\n#\n\ndef reverseArray(a):\n    ra = a[::-1]\n    return ra\n    # Write your code here\n\nif __name__ == '__main__':\n    fptr = open(os.environ['OUTPUT_PATH'], 'w')\n\n    arr_count = int(input().strip())\n\n    arr = list(map(int, input().rstrip().split()))\n\n    res = reverseArray(arr)\n\n    fptr.write(' '.join(map(str, res)))\n    fptr.write('\\n')\n\n    fptr.close() \n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakashkobal%2Fhackerrank-python-sloution","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakashkobal%2Fhackerrank-python-sloution","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakashkobal%2Fhackerrank-python-sloution/lists"}