SIGN IN SIGN UP

Algorithms and Data Structures implemented in JavaScript for beginners, following best practices.

34084 0 0 JavaScript
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)
})
})