
Osama Mohamed
Articles
-
Jan 22, 2025 |
biorxiv.org | Osama Mohamed
AbstractBackground: Antimicrobial resistance (AMR) is a major global health threat, particularly in Sudan, where the overuse and misuse of antibiotics have led to the emergence and spread of multidrug-resistant (MDR) pathogens. Traditional methods to address AMR often fail to provide sustainable solutions. Nanotechnology offers promising alternatives, with silver nanoparticles (AgNPs) demonstrating broad-spectrum antimicrobial properties.
-
Apr 30, 2024 |
pubs.acs.org | Ziran Jiang |Jeffrey Chen |Osama Mohamed |Jennifer Huynh
-
Apr 30, 2024 |
dx.doi.org | Ziran Jiang |Jeffrey Chen |Osama Mohamed |Jennifer Huynh
-
Oct 16, 2023 |
osama-mohamed.medium.com | Osama Mohamed
Understanding RecursionRecursion occurs when a function calls itself within its body. Recursive functions must have a base case to stop the recursion. otherwise, the function will continue calling itself indefinitely.
-
Oct 14, 2023 |
osama-mohamed.medium.com | Osama Mohamed
def fibonacci(num):This line defines a function called fibonacci(). The function takes one argument, num, and returns the Fibonacci number of num. if num == 0: return 0 This line checks if num is equal to 0, the function immediately returns 0. if num == 1: return 1 This line checks if num is equal to 1, the function immediately returns 1. This is because the first two numbers in the Fibonacci sequence are 0 and 1, and all other numbers in the sequence are the sum of the two previous numbers.
Try JournoFinder For Free
Search and contact over 1M+ journalist profiles, browse 100M+ articles, and unlock powerful PR tools.
Start Your 7-Day Free Trial →