Very simple function for sqrt
authorAleksandar Kostovic <alexandar.kostovic@gmail.com>
Sat, 27 Apr 2019 07:32:50 +0000 (09:32 +0200)
committerAleksandar Kostovic <alexandar.kostovic@gmail.com>
Sat, 27 Apr 2019 07:32:50 +0000 (09:32 +0200)
src/add/fsqrt.py

index d2fe0b3117473c7d704b3fc45929dff9d8a96597..a2065ee55462e9ba1e35c691d439bce6d5791ee8 100644 (file)
@@ -1,3 +1,10 @@
+def sqrt(num):
+    
+   num ** (1/2)
+
+   return num
+
+
 
 
 """