Easy
Given a string s of words separated by single spaces, reverse the characters of each word while preserving word order and spacing.
s
Input: s = "Lets code" Output: "steL edoc"
Input: s = "God Ding" Output: "doG gniD"