Skip to content

Conversation

@n0l3r
Copy link

@n0l3r n0l3r commented Dec 23, 2025

Challenge 6 Solution

Submitted by: @n0l3r
Challenge: Challenge 6

Description

This PR contains my solution for Challenge 6.

Changes

  • Added solution file to challenge-6/submissions/n0l3r/solution-template.go

Testing

  • Solution passes all test cases
  • Code follows Go best practices

Thank you for reviewing my submission! 🚀

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 23, 2025

Warning

Rate limit exceeded

@n0l3r has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 6 minutes and 22 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between 929e581 and f8c6533.

📒 Files selected for processing (1)
  • challenge-6/submissions/n0l3r/solution-template.go

Walkthrough

Adds a new Go file implementing a word frequency counter function. The CountWordFrequency function normalizes input text by removing non-alphanumeric characters, replacing hyphens with spaces, splitting into words, and returning a case-insensitive frequency map.

Changes

Cohort / File(s) Summary
Word Frequency Counter
challenge-6/submissions/n0l3r/solution-template.go
New file; implements CountWordFrequency(text string) map[string]int that tokenizes text, normalizes characters (regex-based removal of non-alphanumerics, hyphen→space replacement), lowercases words, and counts occurrences in a map

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Pre-merge checks

✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main change: adding a Challenge 6 solution by n0l3r, which aligns with the file addition and PR objectives.
Description check ✅ Passed The description is directly related to the changeset, clearly explaining that it contains a Challenge 6 solution and specifying the file added.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

📜 Review details

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 669bf54 and 929e581.

📒 Files selected for processing (1)
  • challenge-6/submissions/n0l3r/solution-template.go
🔇 Additional comments (1)
challenge-6/submissions/n0l3r/solution-template.go (1)

1-8: LGTM!

The package declaration and imports are appropriate for the word frequency counter implementation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant