code2021-l
Version:
前端自定义工具
17 lines (16 loc) • 458 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>高级排序_测试</title>
</head>
<body>
<script src="../../../dist/190719-utils.js"></script>
<script>
const arr = [1, 6, 2, 7, 3, 9, 8, 10, 15, 12, 11, 18]
console.log(aUtils.shellSort(arr))
</script>
</body>
</html>