Skip to content
View amralaaeldien's full-sized avatar

Block or report amralaaeldien

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

Pinned Loading

  1. The-Social-Work The-Social-Work Public

    Python 2

  2. blango blango Public

    Forked from p-atrick/blango

    Starting point for the Advanced Django course

    Python

  3. products_and_categories products_and_categories Public

    A minimalist product information management (PIM) system REST API’s

    Python 1

  4. restaurantapi restaurantapi Public

    A Django Rest Framework API for restaurants

    Python

  5. A script that tries to find the long... A script that tries to find the longest path possible between two points in a rectangle.
    1
    The script tries to find the longest path possible between two points `s` and `e` in a rectangle.
    2
    
                  
    3
    (`s` for start and `e` for end)
    4
    
                  
    5
    The program doesn't work properly if both `s` and `e` are on the same column or if any of them is on the far right or far left column 
  6. the script takes as an input and sea... the script takes as an input and searches n number of files ,finds mutual lines(mutual in all the files) and stores them in a "result.txt" file, it's originally made to search for mutual names , each name stored on a single line in the file
    1
    import sys
    2
    arguments = sys.argv[1:]
    3
    files = {}
    4
    file = iter(arguments)
    5
    for number in range(len(sys.argv[1:])):