aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--leap-year/leap.js2
-rw-r--r--leap-year/ly.c (renamed from ly.c)0
2 files changed, 2 insertions, 0 deletions
diff --git a/leap-year/leap.js b/leap-year/leap.js
new file mode 100644
index 0000000..bc3ee67
--- /dev/null
+++ b/leap-year/leap.js
@@ -0,0 +1,2 @@
+// not very clever, but still a valid solution
+function isLeapYear(a){return a%4!=0?false:a%400==0?true:a%100!=0?true:false;}
diff --git a/ly.c b/leap-year/ly.c
index 84b5a1b..84b5a1b 100644
--- a/ly.c
+++ b/leap-year/ly.c