Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #75 from OmarTahoun/master
Browse files Browse the repository at this point in the history
[FIX: #71] wrong return value for is_upper_case("a3@$")
  • Loading branch information
Chalarangelo committed Mar 31, 2019
2 parents 1c9fa9f + d94bc9b commit 5424f64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snippets/is_upper_case.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ def is_upper_case(string):

```python
is_upper_case('ABC') # True
is_upper_case('a3@$') # True
is_upper_case('a3@$') # False
is_upper_case('aB4') # False
```
```

0 comments on commit 5424f64

Please sign in to comment.