-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
completed the assignment #13
base: main
Are you sure you want to change the base?
Conversation
@@ -10,10 +10,10 @@ def demo(x): | |||
returns: | |||
x*x (int) | |||
''' | |||
x=return(a*a) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please look into typos or invalid syntax.
@@ -36,8 +40,9 @@ def sqrt_of_numbers(num): | |||
sqroot (float) | |||
''' | |||
|
|||
## Code Here | |||
return None | |||
num = cmath.sqrt(a) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and also the syntax should be of python do check the module you are using
even_arr.append(i) | ||
else: | ||
odd_arr.append(i) | ||
sorted_even = concatenate(even_arr,odd_arr) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and that you have to use the module name before the function name here its np.concatenate()
No description provided.