Code Challenges

Get better at coding with practice problems.

Coding Challenges

Select a problem, write code, run test cases, and submit your solution.

Showing 7 of 26 problems

Implement the method reverseWords that reverses the order of words in a string. Solved

Implement the method longestCommonPrefix that returns the shared starting text of all strings. Solved

Implement the method isAnagram that takes two strings and returns true if they are anagrams of each other, otherwise returns false. Solved

Implement the method removeVowels that takes a string as input and returns the string after removing all vowels from it. Solved

70% solved Learner

Implement the reverseString method, which accepts a string and returns its reverse. Solved