Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
5 changes: 3 additions & 2 deletions assignment_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
The fastest one to push is lucky, the others will most likely get a merge
conflict. See if you can fix it :)
"""
import numpy as np

def lower_case(string):
"""
Expand All @@ -16,7 +17,7 @@ def lower_case(string):
"""

### your code starts here

lower_string = np.lower_string(string)
### your code ends here

return lower_string
Expand All @@ -36,7 +37,7 @@ def upper_case(string):
upper_string -- upper case version of string

"""

upper_string = np.upper_string(string)
### your code starts here

### your code ends here
Expand Down