Popular repositories Loading
-
-
Pattern-in-Python
Pattern-in-Python Publicimport string def rangoli_pattern(n): L = [] alpha = string.ascii_lowercase for i in range(n): s = "-".join(alpha[i:n]) L.append((s[::-1]+s[1:]).center(4*n-3, "-")) print('\n'.join(L[:0:-1]+L)) n =…
-
Page_Replacement_Algorithm_Simulator
Page_Replacement_Algorithm_Simulator PublicPage Replacement Algorithm Simulator is a Streamlit-based application that simulates and compares FIFO, LRU, and Optimal algorithms. It displays memory state changes, compares page faults, and prov…
Python
-
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.