Contact Us

 Blog Owner: Bala Krishna Emmadi

Ph no. 8247536369

Email: balagmastro15@gmail.com

Popular Post

MindMaps

Featured post

Question 1: Reverse Words in a String III

  def reverseWords(s: str) -> str: words = s.split() return ' '.join(word[::-1] for word in words)