mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2025-07-07 01:44:52 +08:00
Add unicode based tests for RabinKarp.
This commit is contained in:
@ -37,6 +37,7 @@ describe('rabinKarp', () => {
|
||||
it('should work with UTF symbols', () => {
|
||||
expect(rabinKarp('a\u{ffff}', '\u{ffff}')).toBe(1);
|
||||
expect(rabinKarp('\u0000耀\u0000', '耀\u0000')).toBe(1);
|
||||
// expect(rabinKarp('a\u{10000}', '\u{10000}')).toBe(1);
|
||||
expect(rabinKarp('a\u{20000}', '\u{20000}')).toBe(1);
|
||||
expect(rabinKarp('ab\u{20005}a', '\u{20005}a')).toBe(2);
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user