-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e986a56
commit 5541dd8
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Equality (100 Marks) | ||
The new world believes in equality for everyone and that they must have equal rights and individual identity, regardless of what they are and from where they belong. In this problem, everyone should be present equally. The string may contain lowercase alphabets, uppercase alphabets, numbers or other characters but everyone should exist equally. If the string is such then print "Equality For Everyone" otherwise print "No Equality". | ||
|
||
##### Input Format | ||
The first line of input consists of numbers of test cases, T. | ||
|
||
Next T lines consist of strings to check. | ||
|
||
|
||
##### Constraints | ||
1<= T <=10 | ||
|
||
1<= |string| <=1000 | ||
|
||
##### Output Format | ||
Print the required output. | ||
|
||
### Sample TestCase 1 | ||
#### Input | ||
3</br> | ||
aaabbBBAAA12345)(*&^</br> | ||
aa11BB!!!!!!</br> | ||
aWsEdR1!2@3#</br> | ||
#### Output | ||
Equality For Everyone</br> | ||
No Equality</br> | ||
Equality For Everyone</br> |