Update Pangram.java using Java Collections - #4479
Conversation
A simple separate function isPangramOrNot(String s) has been created which implements the Pangram checking of a string using Java Collection Framework approach.
|
I request the maintainer(s) to merge my request using "hacktoberfest-accepted" label. |
Co-authored-by: Debasish Biswas <debasishbsws.dev@gmail.com>
|
Looks like you haven't add test for your function. (It is always better to add test you know) BTW thanks for contributing. |
|
Ok, I will update the method name isPangramUsingSet(String s) and also add some tests for my method. |
Method name updated to - isPangramUsingSet(String s)
|
Hi, I have updated the function name to isPangramUsingSet(String s) and also added tests for my function. P.S. - I would be grateful if my contribution is accepted and merged using "hacktoberfest-accepted" label. |
|
Add the test in this barnch. |
Successfully updated the testcases in this same PR branch
|
Hii, I have updated the test cases in PangramTest.java file in this current PR branch itself. P.S. - Looking forward to having my contribution merged and accepted. |
A simple separate function isPangramOrNot(String s) has been created which implements the Pangram checking of a string using Java Collection Framework approach.