-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathstring_evaluator.py
28 lines (20 loc) · 1.05 KB
/
string_evaluator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Created by Leon Hunter at 3:57 PM 10/23/2020
class StringManipulator(object):
def get_hello_world(self):
return None # TODO - Implement solution
def concatenate(self, value_to_be_added_to, value_to_add):
return None # TODO - Implement solution
def substring_inclusive(self, string_to_fetch_from, starting_index, ending_index):
return None # TODO - Implement solution
def substring_exclusive(self, string_to_fetch_from, starting_index, ending_index):
return None # TODO - Implement solution
def compare(self, first_value, second_value):
return None # TODO - Implement solution
def get_middle_character(self, string_to_fetch_from):
return None # TODO - Implement solution
def get_first_word(self, string_to_fetch_from):
return None # TODO - Implement solution
def get_second_word(self, string_to_fetch_from):
return None # TODO - Implement solution
def reverse(self, string_to_be_reversed):
return None # TODO - Implement solution