diff --git "a/\347\216\213\347\232\223/0218/node.js" "b/\347\216\213\347\232\223/0218/node.js" new file mode 100644 index 0000000000000000000000000000000000000000..f07d8eafed94de0dc32279d889a2299e5da40976 --- /dev/null +++ "b/\347\216\213\347\232\223/0218/node.js" @@ -0,0 +1,23 @@ +let fs = require("fs"); + +if (!fs.existsSync("filesycn")) fs.mkdirSync("filesycn"); + +let syncStartTime = new Date().getTime(); +for (let i = 0; i < 2000; i++) { + fs.writeFileSync("./filesycn/" + i + ".txt", "sync"); +} +let syncEndTime = new Date().getTime(); +console.log("同步创建的时间:" + (syncEndTime - syncStartTime)); + +let createNum = 0; +if (!fs.existsSync("filesasync")) fs.mkdirSync("filesasync"); +let asyncStartTime = new Date().getTime(); +for (let j = 0; j < 2000; j++) { + fs.writeFile("./filesasync/" + j + ".txt", "sync", (err) => { + createNum++; + if (createNum == 2000) { + let asyncEndTime = new Date().getTime(); + console.log("异步创建的时间:" + (asyncEndTime - asyncStartTime)); + } + }) +} diff --git "a/\347\216\213\347\232\223/0220/homework.js" "b/\347\216\213\347\232\223/0220/homework.js" new file mode 100644 index 0000000000000000000000000000000000000000..248fd07624d68b6ca74e1610b4edcf703d33af5e --- /dev/null +++ "b/\347\216\213\347\232\223/0220/homework.js" @@ -0,0 +1,48 @@ +// 作业1:使用open write close的形式去创建一个大文件,内容从指定的文本中随机取一些(每次取得长度内容可以不一样),计算出这个大文件出现最多的字符(要使用流的形式). +let fs = require("fs"); +var a='ohasuodaosoascjoasoicaosaoi8983heq092u08nhsknal木大木大欧拉wryydasdbhisadbiksadsddnodnio'; +var res='' +for(let i=0;i<=1000000;i++){ + let id=Math.floor(Math.random()*a.length) + res+=a[id] + } + + +let fd = fs.openSync("./text.txt", "w"); +fs.writeSync(fd, ""+res+""); +fs.closeSync(fd) +var rs = fs.createReadStream('./text.txt', 'utf-8'); + +var read=fs.readFileSync('./text.txt','utf-8'); +var sc=[] + for(var j=0;jmax){ + maxnum=sc[k]; + max=k; + } + } + + + +rs.on("data", (chunk) => { + + console.log("DATA:---------------------"); + console.log(chunk); + +}); + +rs.on("end", () => { + console.log('最多的字符是:',max); + console.log("出现了:"+maxnum+"次") +}); diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/1.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/1.txt" new file mode 100644 index 0000000000000000000000000000000000000000..bc6a950bffcdca9ee6558c3dc1acf6765157b5b4 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/1.txt" @@ -0,0 +1 @@ +569 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/10.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/10.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c5321a6e72328aa5f59125f67df79b7d075efa93 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/10.txt" @@ -0,0 +1 @@ +709 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/100.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/100.txt" new file mode 100644 index 0000000000000000000000000000000000000000..bc6a950bffcdca9ee6558c3dc1acf6765157b5b4 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/100.txt" @@ -0,0 +1 @@ +569 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/11.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/11.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8db9866c8463f9bebbc4a3bdc87d5455578267c9 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/11.txt" @@ -0,0 +1 @@ +332 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/12.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/12.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f35d9602e1a7b7da27644a48e1997c111e3bfd8c --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/12.txt" @@ -0,0 +1 @@ +498 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/13.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/13.txt" new file mode 100644 index 0000000000000000000000000000000000000000..43c451e0c6da52ad30bb605a60c7cb34497f3d30 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/13.txt" @@ -0,0 +1 @@ +54 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/14.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/14.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b775c5e1521bb57f5b780d4b0fc25be65a4e370f --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/14.txt" @@ -0,0 +1 @@ +699 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/15.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/15.txt" new file mode 100644 index 0000000000000000000000000000000000000000..66321c084ca9a642e8b308c01850cfd0351b48d1 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/15.txt" @@ -0,0 +1 @@ +189 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/16.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/16.txt" new file mode 100644 index 0000000000000000000000000000000000000000..db8b6957791f1d8c1ec59584a196b2eaa9f92f76 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/16.txt" @@ -0,0 +1 @@ +948 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/17.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/17.txt" new file mode 100644 index 0000000000000000000000000000000000000000..80945bc4363d59056a852d30423fbd3517241b17 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/17.txt" @@ -0,0 +1 @@ +183 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/18.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/18.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4e36eb8e01c7e367d8f768d2e854fb16f30e639f --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/18.txt" @@ -0,0 +1 @@ +671 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/19.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/19.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a869e998c0e3bac924179254460c4911d81e84a6 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/19.txt" @@ -0,0 +1 @@ +638 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/2.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/2.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fea1e3e73cb9d3da273d8a59e99a6ef68ed0d7af --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/2.txt" @@ -0,0 +1 @@ +882 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/20.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/20.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a8f6a254f8a75a50d051f68128b0d67dd407cfeb --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/20.txt" @@ -0,0 +1 @@ +164 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/21.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/21.txt" new file mode 100644 index 0000000000000000000000000000000000000000..38017008e6f8d020fcc2f5c3e05b959f7369008f --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/21.txt" @@ -0,0 +1 @@ +668 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/22.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/22.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f9b03274778d1dc4bcc6d91141c5dc44dc25a4c4 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/22.txt" @@ -0,0 +1 @@ +815 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/23.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/23.txt" new file mode 100644 index 0000000000000000000000000000000000000000..748e6f1af544d497e99e1f5c583027349aa4a4c3 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/23.txt" @@ -0,0 +1 @@ +637 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/24.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/24.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fbee9e365f19446bec2b6ad4854be038e1bd76cf --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/24.txt" @@ -0,0 +1 @@ +982 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/25.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/25.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4acc65d01203475b5fbfa75a08718733074050ca --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/25.txt" @@ -0,0 +1 @@ +266 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/26.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/26.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7dfce3516b5fa406a807fab6194df98c613e6aa8 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/26.txt" @@ -0,0 +1 @@ +594 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/27.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/27.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5f5c3898347d06e1786840245df578e6f9408c55 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/27.txt" @@ -0,0 +1 @@ +496 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/28.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/28.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5f97bf2507d15d389ba55c5748c81fa5f020e848 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/28.txt" @@ -0,0 +1 @@ +944 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/29.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/29.txt" new file mode 100644 index 0000000000000000000000000000000000000000..368f89ceef179cc546403ac0d5ef1d0e4b340447 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/29.txt" @@ -0,0 +1 @@ +28 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/3.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/3.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5c0d33d75a61e20f229801fedcba649fad7ca175 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/3.txt" @@ -0,0 +1 @@ +647 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/30.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/30.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c6a6d63ac8732319edccf32aac0a48a4063c862a --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/30.txt" @@ -0,0 +1 @@ +902 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/31.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/31.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8c19d14d40779bd8ae1e74d19dc262579ea0d10b --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/31.txt" @@ -0,0 +1 @@ +369 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/32.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/32.txt" new file mode 100644 index 0000000000000000000000000000000000000000..25417dad5587609021599a8b8631c25059c0065c --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/32.txt" @@ -0,0 +1 @@ +368 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/33.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/33.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9f728587959d189de8b5dcadab2b3aec1276a169 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/33.txt" @@ -0,0 +1 @@ +88 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/34.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/34.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2da432533140eaf6c69faa66982fee3287473121 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/34.txt" @@ -0,0 +1 @@ +457 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/35.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/35.txt" new file mode 100644 index 0000000000000000000000000000000000000000..354d30ba65ad042b77fcc8e08062c000a1a2e624 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/35.txt" @@ -0,0 +1 @@ +869 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/36.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/36.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8783e305111947a209a0689074d8dfa60d33582e --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/36.txt" @@ -0,0 +1 @@ +53 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/37.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/37.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cadbe928f85634ae380371c3266c8dad6eefd5e7 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/37.txt" @@ -0,0 +1 @@ +378 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/38.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/38.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cc4f7f3feba9cb8765296f4ce390a79adf482e95 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/38.txt" @@ -0,0 +1 @@ +218 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/39.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/39.txt" new file mode 100644 index 0000000000000000000000000000000000000000..74de09f2e7a2e3294cc1b3e921bdaf69dc41973c --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/39.txt" @@ -0,0 +1 @@ +274 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/4.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/4.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b02454449c8cae01aa9a1ce93c15cd4c90e8a117 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/4.txt" @@ -0,0 +1 @@ +749 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/40.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/40.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f491e22fc0b16a23866d07d8a24461aad41ba50a --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/40.txt" @@ -0,0 +1 @@ +299 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/41.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/41.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5d1d1b123b85a650151ddcc8869d7c658cedc0e0 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/41.txt" @@ -0,0 +1 @@ +755 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/42.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/42.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0f2ed730d557d9ab8db8085e804a457be904de28 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/42.txt" @@ -0,0 +1 @@ +877 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/43.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/43.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a76c74dcec6ab8ba53c5d5b4de054eb43f68fe67 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/43.txt" @@ -0,0 +1 @@ +75 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/44.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/44.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e77a96349c09f79b6c061a73e03ad91346a0a196 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/44.txt" @@ -0,0 +1 @@ +73 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/45.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/45.txt" new file mode 100644 index 0000000000000000000000000000000000000000..597975b413303a8c3cb711640e290794dc8077a8 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/45.txt" @@ -0,0 +1 @@ +35 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/46.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/46.txt" new file mode 100644 index 0000000000000000000000000000000000000000..db8b6957791f1d8c1ec59584a196b2eaa9f92f76 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/46.txt" @@ -0,0 +1 @@ +948 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/47.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/47.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5a40cf687a21409d830ec15ba6da1182e125b9f9 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/47.txt" @@ -0,0 +1 @@ +435 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/48.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/48.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7d4983b9898662edf7c4b760af9ab971404ddd74 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/48.txt" @@ -0,0 +1 @@ +458 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/49.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/49.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2edeafb09db0093bae6ff060e2dcd2166f5c9387 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/49.txt" @@ -0,0 +1 @@ +20 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/5.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/5.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b7e8805f4f85c59e9168b4b217bc480868397097 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/5.txt" @@ -0,0 +1 @@ +991 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/50.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/50.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ec303dec77dd0792b28d7fbf359f2c1c1dd43375 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/50.txt" @@ -0,0 +1 @@ +583 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/51.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/51.txt" new file mode 100644 index 0000000000000000000000000000000000000000..17863f9c517816f36137e0d362ea558df53cde00 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/51.txt" @@ -0,0 +1 @@ +782 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/52.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/52.txt" new file mode 100644 index 0000000000000000000000000000000000000000..58dc5afc0c7b1b0150b0b8d69c6cbd4425563a1e --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/52.txt" @@ -0,0 +1 @@ +303 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/53.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/53.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d7765fe47e06ccb3e29a916d2f5ede6d3ac0c533 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/53.txt" @@ -0,0 +1 @@ +70 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/54.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/54.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1d887738112aee77dfdb9874c5ce3df99eb9d9fd --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/54.txt" @@ -0,0 +1 @@ +727 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/55.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/55.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9a1371776c6ade5edc36faeddce72862d3fca6c2 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/55.txt" @@ -0,0 +1 @@ +169 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/56.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/56.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8d4011ad25d82168b3b8377030f4c232fe2a4118 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/56.txt" @@ -0,0 +1 @@ +412 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/57.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/57.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d2e1cefe89e17269cf846b1b537654757ac8b735 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/57.txt" @@ -0,0 +1 @@ +44 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/58.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/58.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6547e41559f1adeb64e16d6027efdac6619b1bd2 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/58.txt" @@ -0,0 +1 @@ +171 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/59.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/59.txt" new file mode 100644 index 0000000000000000000000000000000000000000..191829efad4f7b6293301a32fb61608624f07377 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/59.txt" @@ -0,0 +1 @@ +735 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/6.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/6.txt" new file mode 100644 index 0000000000000000000000000000000000000000..83248fb9df4a244c41a10fa536045d5a8e759aee --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/6.txt" @@ -0,0 +1 @@ +142 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/60.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/60.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f95076e1d68b84bd07c51af7c6b823f41522e3ab --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/60.txt" @@ -0,0 +1 @@ +662 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/61.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/61.txt" new file mode 100644 index 0000000000000000000000000000000000000000..26102a7bd5731a4d0595ea8e7f00a30edb9b1743 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/61.txt" @@ -0,0 +1 @@ +818 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/62.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/62.txt" new file mode 100644 index 0000000000000000000000000000000000000000..823aeb4b44b7f09e1692e625ff87d75f224be3b5 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/62.txt" @@ -0,0 +1 @@ +624 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/63.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/63.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8d4011ad25d82168b3b8377030f4c232fe2a4118 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/63.txt" @@ -0,0 +1 @@ +412 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/64.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/64.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f6a32a9736dccfc9854e5cf6348b5a8512739156 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/64.txt" @@ -0,0 +1 @@ +857 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/65.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/65.txt" new file mode 100644 index 0000000000000000000000000000000000000000..235adf8bd8fe3b9844d65f77956d73f5fed04ede --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/65.txt" @@ -0,0 +1 @@ +349 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/66.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/66.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9c574c95386ccbd814a27b1a634f4169bad6c734 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/66.txt" @@ -0,0 +1 @@ +893 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/67.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/67.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e7fd4bfbe1ea64c596fb7c45397fd6d57f73ec9c --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/67.txt" @@ -0,0 +1 @@ +838 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/68.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/68.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4b6f9c39e5c757bf387d465c53026b336dd8b96c --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/68.txt" @@ -0,0 +1 @@ +64 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/69.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/69.txt" new file mode 100644 index 0000000000000000000000000000000000000000..72b67e0ede18e026aed402b468c5010191c5929c --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/69.txt" @@ -0,0 +1 @@ +579 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/7.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/7.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7bfae052e1287ea49b5903e009ec8a5539997f8f --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/7.txt" @@ -0,0 +1 @@ +905 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/70.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/70.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0c8ddea6abfa06b1f51fd4fcf54d75011361201f --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/70.txt" @@ -0,0 +1 @@ +955 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/71.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/71.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f6a32a9736dccfc9854e5cf6348b5a8512739156 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/71.txt" @@ -0,0 +1 @@ +857 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/72.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/72.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7003e7fe1fa0b91d6e034f2f7ac38f2f5989f85c --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/72.txt" @@ -0,0 +1 @@ +51 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/73.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/73.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e6d11f621da97224a8d9b0a983eae255067af32a --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/73.txt" @@ -0,0 +1 @@ +291 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/74.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/74.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8bc6583717d617da1f8bf8bbaa7c16c25ef17113 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/74.txt" @@ -0,0 +1 @@ +120 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/75.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/75.txt" new file mode 100644 index 0000000000000000000000000000000000000000..eed0d1a4ad7e661b71455c98ccdb75bad624088c --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/75.txt" @@ -0,0 +1 @@ +506 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/76.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/76.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ca6d18c238717ddb04f0e8050d4566fa3493b016 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/76.txt" @@ -0,0 +1 @@ +616 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/77.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/77.txt" new file mode 100644 index 0000000000000000000000000000000000000000..66e214a2e83a511dd6fc04f540b10077a1faaca4 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/77.txt" @@ -0,0 +1 @@ +432 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/78.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/78.txt" new file mode 100644 index 0000000000000000000000000000000000000000..779a8736e2c9762c2e62590be40c16f5209c1589 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/78.txt" @@ -0,0 +1 @@ +826 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/79.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/79.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f6a32a9736dccfc9854e5cf6348b5a8512739156 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/79.txt" @@ -0,0 +1 @@ +857 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/8.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/8.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e0d1ea1e9ac39d1d0d9353874b9ca7b440121f23 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/8.txt" @@ -0,0 +1 @@ +205 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/80.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/80.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7392849d545f436d49f23d990ee934d86b847763 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/80.txt" @@ -0,0 +1 @@ +775 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/81.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/81.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ffad77660d58cac71bebe6d65fdb62d4eb628aac --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/81.txt" @@ -0,0 +1 @@ +736 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/82.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/82.txt" new file mode 100644 index 0000000000000000000000000000000000000000..97964b3fde641bc6a38c676af554c7f060572be9 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/82.txt" @@ -0,0 +1 @@ +422 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/83.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/83.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a869e998c0e3bac924179254460c4911d81e84a6 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/83.txt" @@ -0,0 +1 @@ +638 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/84.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/84.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2ebc6516c7df177c819b752dfac7b5ce5064189f --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/84.txt" @@ -0,0 +1 @@ +56 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/85.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/85.txt" new file mode 100644 index 0000000000000000000000000000000000000000..871cae9aa662ba186a3a1da42301a2cfbbaea7e0 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/85.txt" @@ -0,0 +1 @@ +323 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/86.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/86.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3879e48b523c8ecd6fa81a86ff7d05d485d0516d --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/86.txt" @@ -0,0 +1 @@ +753 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/87.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/87.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c95da112f9eac2c30e51543dea8ec04ab0e435a9 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/87.txt" @@ -0,0 +1 @@ +459 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/88.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/88.txt" new file mode 100644 index 0000000000000000000000000000000000000000..dd4a90065ceb3d30cc38d69c0e85d96466c90bd1 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/88.txt" @@ -0,0 +1 @@ +254 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/89.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/89.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4f09af7132f46046b51bb310c9bf52ad24360558 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/89.txt" @@ -0,0 +1 @@ +492 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/9.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/9.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3879e48b523c8ecd6fa81a86ff7d05d485d0516d --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/9.txt" @@ -0,0 +1 @@ +753 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/90.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/90.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e458f1411c1ea96ba7709a1e95552303591e1434 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/90.txt" @@ -0,0 +1 @@ +821 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/91.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/91.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d7f3668a68034370ad1e355d05f4659541b0db5e --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/91.txt" @@ -0,0 +1 @@ +98 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/92.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/92.txt" new file mode 100644 index 0000000000000000000000000000000000000000..66e214a2e83a511dd6fc04f540b10077a1faaca4 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/92.txt" @@ -0,0 +1 @@ +432 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/93.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/93.txt" new file mode 100644 index 0000000000000000000000000000000000000000..be2fb0a390d694f75a1e5957254c29d7957fa3a2 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/93.txt" @@ -0,0 +1 @@ +789 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/94.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/94.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e8a4e6b71bedf09fc8698c29284df058b6ac5e8b --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/94.txt" @@ -0,0 +1 @@ +329 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/95.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/95.txt" new file mode 100644 index 0000000000000000000000000000000000000000..941d0e591f298ec5df6cec8484dac4cda1c255ac --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/95.txt" @@ -0,0 +1 @@ +479 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/96.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/96.txt" new file mode 100644 index 0000000000000000000000000000000000000000..77555c31de9f33c3219429a31dbfaa25386cc3a3 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/96.txt" @@ -0,0 +1 @@ +529 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/97.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/97.txt" new file mode 100644 index 0000000000000000000000000000000000000000..662d98cc9235552d5e3cd90c5ffc1983edf4bf2e --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/97.txt" @@ -0,0 +1 @@ +436 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/98.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/98.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2da432533140eaf6c69faa66982fee3287473121 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/98.txt" @@ -0,0 +1 @@ +457 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/99.txt" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/99.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1bc902939e155947506b04139b8b9dbfa10f3319 --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/99.txt" @@ -0,0 +1 @@ +531 \ No newline at end of file diff --git "a/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/demo.js" "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/demo.js" new file mode 100644 index 0000000000000000000000000000000000000000..f24384cb719fbc5ec4a727023345028869a09b3b --- /dev/null +++ "b/\347\216\213\347\232\223/\346\226\207\344\273\266\350\257\273\345\217\226\345\206\231\345\205\245/demo.js" @@ -0,0 +1,25 @@ +var fs = require('fs'); +let shuzu=[] +let max=0; +let min=1000; +let maxFile=0; +let minFile=0; +for(let i=1;i<=100;i++){ + var a= Math.round(Math.random()*1000) + fs.writeFileSync("./"+i+".txt",""+a+"") + shuzu[i]=(fs.readFileSync("./"+i+".txt").toString()); + + if(Number(shuzu[i])>max){ + max=Number(shuzu[i]); + maxFile=i; + } + + if(Number(shuzu[i])