Problem statement: Write a function to reverse the words in a given string. Also, give the solution without using python in-built functions. Example: "how are you john ?" should return "? john you are how"
3 min read • ReadProblem statement: Write a function to check whether given two strings are anagrams/permutation. An anagram occurs when two strings can be written using the exact same letters. Example : "abcabc" and "aabbcc" are anagrams.
3 min read • Read