4. Problem Solving Write a function ProblemFourA() that reverses a string. Use a
ID: 3752641 • Letter: 4
Question
4. Problem Solving Write a function ProblemFourA() that reverses a string. Use an appropriate data structure, implemented by yourself but not publicly available to the client calling the API a. i. Example ProblemFourA("what the?") returns ("eht tahw" b. Write a function ProblemFourB) that takes an intllll array of arbitrary size and finds all integers that sum to an arbitrary value. ProblemFourB( [12;3 4], 5) should return (2,3) and (1,4) c. Design an algorithm that can be called with ProblemFourC that uses one of the data structures we've discussed so far to find the Nth smallest number that takes the form i. Example ProblemFourC(0) returns 1, ProblemFourC(1) returns 7, and so forth.Explanation / Answer
a.
# Function to reverse a string, since the language is not specified so i used python
def ProblemFourA(string):
string = string[::-1]
return string