Find Words Containing Character
You are given a 0-indexed array of strings words and a character x.
Return an array of indices representing the words that contain the character x.
Note that the returned array may be in any order.
LeetCode Problem - 2942
import java.util.ArrayList;
...
perfinsights.hashnode.dev1 min read