Algorithms and Data Structures implemented in JavaScript for beginners, following best practices.
|
|
import { problem19 } from '../Problem019.js'
|
||
|
|
|
||
|
|
describe('checking sundays during the twentieth century', () => {
|
||
|
|
// Project Euler Challenge Check
|
||
|
|
test('result should be 171', () => {
|
||
|
|
expect(problem19()).toBe(171)
|
||
|
|
})
|
||
|
|
})
|