Skip to content
View akashkathole7's full-sized avatar
🎯
Focusing
🎯
Focusing
  • SIL
  • Pune

Highlights

  • Pro

Block or report akashkathole7

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
akashkathole7/README.md

Pinned Loading

  1. bigmart_sales_prediction bigmart_sales_prediction Public

    Jupyter Notebook

  2. Customer-segmentation-KMeans Customer-segmentation-KMeans Public

    Jupyter Notebook

  3. Exploratory-Data-Analysis---Terrorism Exploratory-Data-Analysis---Terrorism Public

    Jupyter Notebook

  4. insurance_price_predicton insurance_price_predicton Public

    Jupyter Notebook

  5. merge_&_merge_sort.py merge_&_merge_sort.py
    1
    def merge(A,B):
    2
        (i,j,c) = (0,0,[])
    3
        (m,n) = (len(A),len(B))
    4
        while i + j < m + n:
    5
            if i == m:
  6. search_insert_position.py search_insert_position.py
    1
    def search_insert_position(data,target):
    2
        i = 0
    3
        while i < len(data):
    4
            if data[i] == target:
    5
                return i