docs: fix formatting and adding more details

This commit is contained in:
zanninso 2024-07-09 17:32:01 +01:00 committed by zanninso
parent 47aab4bd1b
commit e5222a2296
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Create a class `AnagramChecker` that provides a method to check if two strings are anagrams. An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.
Create a class `AnagramChecker` that provides a method to check if two strings are anagrams. An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.The comparison should be case insensitive.
### Expected Class
@ -16,7 +16,7 @@ public class AnagramChecker {
### Usage
Here is a possible ExerciseRunner.java to test your class:
Here is a possible `ExerciseRunner.java` to test your class:
```java
public class ExerciseRunner {