kunal-kushwaha / DSA-Bootcamp-Java

This repository consists of the code samples, assignments, and notes for the Java data structures & algorithms + interview preparation bootcamp of WeMakeDevs.
https://www.youtube.com/playlist?list=PL9gnSGHSqcnr_DxHsP7AW9ftq0AtAyYqJ
17.25k stars 11.08k forks source link

Is this relevant to arrays ? #898

Open netkap opened 1 year ago

netkap commented 1 year ago

In arrays assignment the question number 10 https://leetcode.com/problems/check-if-the-sentence-is-pangram/ is related to string as per my observation . However I am still learning and it might be related to array.

ishangaur07 commented 1 year ago

Yeah, Its a string based question

FarhaadKhan1706 commented 1 year ago

Yes you can use an array to store strings like this - String[] words = new String[5];