Rename folders with numbers and underscores

This commit is contained in:
Benjo Kho
2021-08-07 14:52:11 +08:00
parent 55cfb173d8
commit 61f38bf60c
40 changed files with 8 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
# Exercise 06 - leapYears
Create a function that determines whether or not a given year is a leap year. Leap years are determined by the following rules:
> Leap years are years divisible by four (like 1984 and 2004). However, years divisible by 100 are not leap years (such as 1800 and 1900) unless they are divisible by 400 (like 1600 and 2000, which were in fact leap years). (Yes, it's all pretty confusing)
>
> -- <cite>[Learn to Program](https://pine.fm/LearnToProgram/chap_06.html) by Chris Pine</cite>
```javascript
leapYears(2000) // is a leap year: returns true
leapYears(1985) // is not a leap year: returns false
```
## Hints
- use an `if` statement and `&&` to make sure all the conditions are met properly
+5
View File
@@ -0,0 +1,5 @@
const leapYears = function() {
};
module.exports = leapYears;
+22
View File
@@ -0,0 +1,22 @@
const leapYears = require('./leapYears')
describe('leapYears', () => {
test('works with non century years', () => {
expect(leapYears(1996)).toBe(true);
});
test.skip('works with non century years', () => {
expect(leapYears(1997)).toBe(false);
});
test.skip('works with ridiculously futuristic non century years', () => {
expect(leapYears(34992)).toBe(true);
});
test.skip('works with century years', () => {
expect(leapYears(1900)).toBe(false);
});
test.skip('works with century years', () => {
expect(leapYears(1600)).toBe(true);
});
test.skip('works with century years', () => {
expect(leapYears(700)).toBe(false);
});
});