Browse Source

Fixing mistakes

pull/533/head
Xavier Petit 5 years ago committed by xpetit
parent
commit
62aebe323a
  1. 8
      subjects/isanagram.en.md

8
subjects/isanagram.en.md

@ -1,4 +1,4 @@
## anagram ## isanagram
## **WARNING! VERY IMPORTANT!** ## **WARNING! VERY IMPORTANT!**
@ -14,7 +14,7 @@ This means that:
### Instructions ### Instructions
Write a function that returns `true` if two strings are anagrams, otherwise returns `false`. Write a function that returns `true` if two strings are anagrams, otherwise returns `false`.
Anagram is a string made by using the letters of another string in a different order. An anagram is a string made by using the letters of another string in a different order.
Only lower case characters will be given. Only lower case characters will be given.
@ -58,8 +58,8 @@ func main() {
Its output: Its output:
```bash ```bash
$> go build $ go build
$> ./main $ ./main
true true
false false
true true

Loading…
Cancel
Save