You are given a string text and an integer index.
Return a new str equal to text with the single character at position index removed. All other characters keep their original order.
The index is 0-based and is guaranteed to be valid (0 <= index < len(text)). For example, removing index 0 from "hello" gives "ello".
NOTE: This is a function-type question — you only write the function. Do not read input or print anything; a hidden checker calls your function and checks its return value.
Arguments
'hello'
0
Returns
'ello'