Skip to content

Commit

Permalink
Create CharacterEquality.md
Browse files Browse the repository at this point in the history
  • Loading branch information
git-karthik authored Apr 3, 2020
1 parent e986a56 commit 5541dd8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions CharacterEquality.md
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>

0 comments on commit 5541dd8

Please sign in to comment.