From 104f7be3c2713519e6809e74dfb5a528ced9b29b Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Thu, 16 Jul 2020 12:56:53 +0100 Subject: [PATCH] Update README.md --- subjects/findnextprime/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subjects/findnextprime/README.md b/subjects/findnextprime/README.md index 79cfc578..dcf967f8 100644 --- a/subjects/findnextprime/README.md +++ b/subjects/findnextprime/README.md @@ -6,6 +6,8 @@ Write a function that returns the first prime number that is equal or superior t The function must be optimized in order to avoid time-outs with the tester. +(We consider that only positive numbers can be prime numbers) + ### Expected function ```go