Skip to content

Instantly share code, notes, and snippets.

@laltin
laltin / turkish-words.js
Created October 14, 2016 22:41
List of some Turkish words
module.exports = [
"ab",
"aba",
"aba güreşi",
"abacı",
"abacılık",
"abadi",
"abajur",
"abajurcu",
"abajurculuk",
@laltin
laltin / pentagons.js
Last active October 14, 2016 21:29
Solution to OYUN16 problem #3
var coordinates = [
/* 0 */ [0, 0],
/* 1 */ [0, 1],
/* 2 */ [0, 2],
/* 3 */ [0, 3],
/* 4 */ [1, 0],
/* 5 */ [1, 1],
/* 6 */ [1, 2],
/* 7 */ [1, 3],
/* 8 */ [1, 4],
@laltin
laltin / euler31.html
Last active August 6, 2016 21:21
Solution to Project Euler problem 31
<html>
<head>
<head>
<body>
<script>
var coins = [1, 2, 5, 10, 20, 50, 100, 200];
function ways(x, limit=0) {
if (x < 0) {
return 0;