Skip to content

Commit

Permalink
Solutions-README
Browse files Browse the repository at this point in the history
  • Loading branch information
Kareiman committed Jan 12, 2025
1 parent 4b87e4a commit c449d1b
Showing 1 changed file with 1 addition and 35 deletions.
36 changes: 1 addition & 35 deletions solutions/README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,3 @@
# Solutions

This folder contains implementations for the challenges.

## Challenges

1. **Merge Dictionaries**:
- A utility to merge two dictionaries with conflict resolution.
- See `merge_dictionaries.py` for the implementation.

2. **Anagram Finder**:
- A function to check if two strings are anagrams.
- See `anagram_finder.py` for the implementation.

## Usage

To use any solution, simply import the
required function and pass the appropriate arguments.

### How to Run

1. Clone the repository.
2. Navigate to the folder containing the solution.
3. Run the desired script:

```bash
python <script_name>.py
```

### Example

```python
# Example for Anagram Finder
from anagram_finder import are_anagrams
result = are_anagrams("listen", "silent")
print(result) # Output: True
This is **Group 22** solutions

0 comments on commit c449d1b

Please sign in to comment.