Preview:
class Solution {
    public List<String> stringMatching(String[] words) {
        List<String> list = new ArrayList<>();
        
        for(String w : words)
        {
            for(String s : words)
            {
                if(s.length() < w.length())
                {
                    if(w.contains(s) && !list.contains(s))
                    {
                        list.add(s);
                    }
                }
            }
        }
        return list;
    }
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter