id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tmhscs@gmail.com strings > string_isPangram
prev  |  next  |  chance

string_isPangram--a pangram is a phrase or sentence containing all 26 letters of the alphabet. Given a String write a method to determine if it is a pangram.


string_isPangram("This sentence is definetly not a pangram") → false
string_isPangram("The quick brown fox jumps over a lazy dog") → true
string_isPangram("GQ's oft lucky whiz Dr. J, ex-NBA MVP - Steve Galen") → true

...Save, Compile, Run (ctrl-enter)

public boolean string_isPangram(String str){ }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Post-solution available

Copyright Nick Parlante 2017 - privacy