Skip to content
View AhmadAthamny's full-sized avatar
📝
Learning
📝
Learning

Block or report AhmadAthamny

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. Smile2Win Smile2Win Public

    A game where people sit in front of the camera, they choose a subject to get questions for, and whoever answers first correctly gets points, at the end whoever collected most points wins.

    Python

  2. AhmadAthamny AhmadAthamny Public

    Config files for my GitHub profile.

  3. background-generator background-generator Public

  4. hand2 hand2 Public

    Github for my high-school Computer Science project (Bagrut).

    C#

  5. with-redux with-redux Public

    JavaScript

  6. Jack Quick-Sort - Vaknin Jack Quick-Sort - Vaknin
    1
    // Yitzhak Vaknin's solution for a quick-sort algorithm in Jack language.
    2
    class Question {
    3
    
                  
    4
        function void sort(Array arr, int size) {
    5
            do Question.quickSort(arr, 0, size - 1);