#leetcode-solution
Read more stories on Hashnode
Articles with this tag
Given two strings s and p, return an array of all the start indices of p's anagrams in s. You may return the answer in any order*.* An Anagram is a...
You are given an array of n strings strs, all of the same length. The strings can be arranged such that there is one on each line, making a grid. For...
Given the head of a singly linked list, reverse the list, and return the reversed list. Example 1: Input: head = [1,2,3,4,5] Output:...
You are given the heads of two sorted linked lists list1 and list2. Merge the two lists in a one sorted list. The list should be made by splicing...