Remove a Character from a Given Position
Given a string and a position (0-based indexing), remove the character at the given position. Examples: Input : s = "abcde", pos = 1Output : s = "acde"Input : s = "a", pos = 0Output : s = "" Approach - By Using Built-In MethodsWe use erase in C++, string slicing in Python, StringBuilder Delete in Ja