Added BFS Traversal and solved few buga#543
Added BFS Traversal and solved few buga#543Pradeepsingh61 merged 6 commits intoPradeepsingh61:mainfrom
Conversation
💎 Code Quality Check Results❌ Missing Algorithm DescriptionThese files don't explain what the algorithm does:
Required: Add a description explaining the algorithm, its purpose, and how it works
|
🔍 Duplicate Detection Results
|
|
🎉 Welcome to Hacktoberfest 2025, @Shubham-Khetan-2005! 🎃 Thank you for your first contribution to our DSA repository! Here's what happens next: 🔍 Automatic Checks
📋 Next Steps🎯 Great job! Your code compiled successfully. Maintainers @Karanjot786 and @Pradeepsingh61 will review your PR soon. 🎁 What You Get
💡 Tips for Success
Welcome to the community! 🚀 |
🤖 Automated PR Status🔍 Code Validation✅ Passed - File naming and structure look good! 🧪 Compilation Tests✅ Passed - All code compiles successfully! 📋 Overall Status🎉 Ready for Review - Your PR has passed all automated checks! This comment was generated automatically. Checks will re-run when you push new commits. |
There was an spacing issue which i fixed in the alignment commit and I tried to make a Better more commented version of ShellSort in C++ which I reverted as the previous PR was merged successfully
Also there was 2 versions of a file - Java/algorithms/sorting/RadixSortREVANT.java and Java/algorithms/sorting/RadixSortRevant.java which was causing trouble as Git can track both RadixSortRevant.java and RadixSortREVANT.java as separate entries internally, but the OS treats them as the same file on disk.
This leads to Git getting confused: it thinks you have two versions of the same file, one staged, one unstaged.
I fixed it and made it to one file - Java/algorithms/sorting/RadixSortRevant.java only
Apart from that The main task was that I added the BFS Traversal Feature to the Repo in Go language