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
program game2048; | |
uses crt; | |
type arr=array of array of integer; | |
var a,b:arr; i,n:byte; x:char; sc:integer; | |
function eq(a,b:arr):boolean; | |
var i,j:byte; bo:boolean; | |
begin |
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> | |
<meta charset="UTF-8"> | |
<script src="https://unpkg.com/p5"></script> | |
<script language="javascript" type="text/javascript" src="nice_tree.js"></script> | |
<style> | |
body { | |
padding: 0; | |
margin: 0; | |
} |