String Deails Notes Done
String Deails Notes Done
01
Now, It’s Time For Practice :)
01. Reverse Words in a String
Given an input string s, reverse the order of the words.
A word is defined as a sequence of non-space characters.
Practice
Practice
02
03. Longest Common Prefix
Write a function to find the longest common prefix string
amongst an array of strings.
Practice
Practice
03
05. Valid Anagram
Given two strings s and t, return true if t is an anagram of
s, and false otherwise.
Practice
Practice
Practice
04
08. Group Anagrams
Given an array of strings strs, group the anagrams
together. You can return the answer in any order.
Practice
Practice
05
10. Text Justification
Given an array of strings words and a width maxWidth,
format the text such that each line has exactly maxWidth
characters and is fully (left and right) justified.
Practice
06