Skip to content

Commit

Permalink
Fixing copy/paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
Cool-Katt authored Jan 15, 2025
1 parent 82729ba commit a5676c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/anagram/anagram.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, it, expect, xit } from '@jest/globals'
import { Anagram } from './anagram.ts'

let areSetsEqual = (setA, setB) =>
const areSetsEqual = (setA, setB) =>
setA.size === setB.size && [...setA].every((val) => setB.has(val))

describe('Anagram', () => {
Expand Down

0 comments on commit a5676c9

Please sign in to comment.