This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = [ | |
"ab", | |
"aba", | |
"aba güreşi", | |
"abacı", | |
"abacılık", | |
"abadi", | |
"abajur", | |
"abajurcu", | |
"abajurculuk", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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; |