Merge pull request #286 from stainedcreek/patch-1

Update Time_Complexity.md
This commit is contained in:
halfrost
2024-06-22 00:06:36 -07:00
committed by GitHub

View File

@@ -44,6 +44,7 @@ void hello (int n){
```c
bool isPrime (int n){
if (num <= 1) return false;
for( int x = 2 ; x * x <= n ; x ++ )
if( n % x == 0 )
return false;