diff --git a/tech/algorithms.wiki b/tech/algorithms.wiki index 50c6f6a..d3834be 100644 --- a/tech/algorithms.wiki +++ b/tech/algorithms.wiki @@ -85,4 +85,8 @@ Different ways to store and operate on data, with differing efficiency * [[gcd]] - Find the GCD of two numbers * [[modular_exponentiation|Modular Exponentiation]] - Solve a^b mod n +== Misc == + +* [[p_vs_np]] + [[index]] diff --git a/tech/p_vs_np.wiki b/tech/p_vs_np.wiki new file mode 100644 index 0000000..af9c6d7 --- /dev/null +++ b/tech/p_vs_np.wiki @@ -0,0 +1,5 @@ += P vs NP = + +P vs NP is a major unsolved problem in CS. + +P is a problem that can be solved quickly, quickly meaning polynomial time.