Skip to content
View sayeedul's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report sayeedul

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

  1. Multi-Level-Queue-Scheduling Multi-Level-Queue-Scheduling Public

    This is for multilevel CPU scheduling having three different algorithm for each queue with overall scheduling on the RR algorithm. The File MultiLevel Scheduling COMPLETE final.cpp contains the mai…

    C++ 1

  2. DSA-and-Algo-Questions DSA-and-Algo-Questions Public

    Creating this repo for DSA and Algorithm Problems

    C++

  3. Py-Weather-mini-program Py-Weather-mini-program Public

    this Pyhton program tells you about the current weather condition of any city of the world.It take audio input and gives audio output. Just simply speak Your City name and wait for it to respond.

  4. InstaClone InstaClone Public

    Allow us to view all the users registered with the app. Each user can share images with everyone and see images of other users registered with the app by clicking on their names.You can Register an…

    Java

  5. CALCULATOR CALCULATOR Public

    Java

  6. Noise Removal.py Noise Removal.py
    1
    noise_list = ["is", "a", "this", "..."]
    2
    def _remove_noise(input_text):
    3
        words = input_text.split()
    4
        noise_free_words = [word for word in words if word not in noise_list]
    5
        noise_free_text = " ".join(noise_free_words)