about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-12-12T02·41+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-12-12T02·41+0000
commit1a404a58de82fd73b22df57857bf29fb44ce40b3 (patch)
tree43dc17ceed6ca47b9a8d00ae05ccff5dc55f894a
parent686766929a659e611adea47d8368a691136b0336 (diff)
Expand 10^5 in README
I think it's more readable this way.
-rw-r--r--assessments/semiprimes/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/assessments/semiprimes/README.md b/assessments/semiprimes/README.md
index 3ea04b6b34..9f676646c2 100644
--- a/assessments/semiprimes/README.md
+++ b/assessments/semiprimes/README.md
@@ -17,7 +17,7 @@ numbers *Semiprimes*.
 ## Task
 
 - Write a module which provides a function to tell whether a given number, `N`,
-  is a semiprime. `N` will be 10^5.
+  is a semiprime. `N` will be less than 100,000
 - Please implement an API (RESTful or GraphQL) to factor a given number into two
   prime numbers if it’s a semiprime, otherwise, return an error message.