Week 3.2. exercise

This commit is contained in:
Andrea Bianchi
2026-03-17 10:00:59 +09:00
parent 9a4b251976
commit 158a3d0784
3 changed files with 81 additions and 1 deletions

24
w3_2_functions/index.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<script src='https://cdnjs.cloudflare.com/ajax/libs/p5.js/2.0.5/p5.min.js'
integrity='sha512-jOTg6ikYiHx1LvbSOucnvZi4shXbaovZ91+rfViIiUFLgAJK+k1oQtGEaLvDB8rsZwEfUksTgmhrxdvEDykuzQ=='
crossorigin='anonymous'></script>
<meta charset="utf-8" />
<style>
/* Center the canvas */
canvas {
display: block;
margin: 0 auto;
}
</style>
</head>
<script defer src="./sorting.js"></script>
<!-- <script defer src="./solution-sorting.js"></script> -->
<body></body>
</html>