You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uses a breadth-first search, when necessary, to resolve the file path using the correct casing, and verify that the file actually exists. Returns consistent results regardless of case sensitivity of the file path and/or operating system.
Windows and Git do not share the same case sensitivity rules, so this situation may lead to errors or issues when working with Git repositories on Windows.
A Rust implementation that finds anagrams of a given target word from a list of candidates. The solution considers case-insensitive matching, handles Unicode characters, and avoids treating a word as its own anagram. The project includes extensive tests to ensure correct functionality.