Browse Source

docs: fix formatting and adding more details

pull/2648/head
zanninso 2 months ago committed by zanninso
parent
commit
e5222a2296
  1. 4
      subjects/java/checkpoints/is-anagram/README.md

4
subjects/java/checkpoints/is-anagram/README.md

@ -2,7 +2,7 @@
### Instructions ### 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 ### Expected Class
@ -16,7 +16,7 @@ public class AnagramChecker {
### Usage ### Usage
Here is a possible ExerciseRunner.java to test your class: Here is a possible `ExerciseRunner.java` to test your class:
```java ```java
public class ExerciseRunner { public class ExerciseRunner {

Loading…
Cancel
Save