diff --git "a/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/demo1.js" "b/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/demo1.js" new file mode 100644 index 0000000000000000000000000000000000000000..310c4b35b2b23774b37799bf04789f3b9e7b097c --- /dev/null +++ "b/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/demo1.js" @@ -0,0 +1,23 @@ +function add (a,b){ + return a+b; +} +module.exports.add=add; + +function jian(a,b){ + return a-b; +} + +module.exports.jian=jian; + +function chen(a,b){ + return a*b; +} + +module.exports.chen=chen; + +function chu(a,b){ + return a/b; +} + +module.exports.chu=chu; + diff --git "a/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/demo2.js" "b/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/demo2.js" new file mode 100644 index 0000000000000000000000000000000000000000..ad066cf51a56df97d3373c46684b7131548539aa --- /dev/null +++ "b/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/demo2.js" @@ -0,0 +1,8 @@ +var greet=require('./demo1'); +var a=10; +var b=5; +console.log(greet); +console.log(greet.add(a,b)); +console.log(greet.jian(a,b)); +console.log(greet.chen(a,b)); +console.log(greet.chu(a,b)); \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/\345\242\236\345\210\240\346\224\271\344\275\234\344\270\232/demo01.js" "b/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/\345\242\236\345\210\240\346\224\271\344\275\234\344\270\232/demo01.js" new file mode 100644 index 0000000000000000000000000000000000000000..41bcba5fd577c7a58b902a846f9cc5fd86423f30 --- /dev/null +++ "b/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/\345\242\236\345\210\240\346\224\271\344\275\234\344\270\232/demo01.js" @@ -0,0 +1,4 @@ +let count=require("./demo02"); +console.log(count.add(5,3)); + +console.log(count.handle(5,56,"add")); \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/\345\242\236\345\210\240\346\224\271\344\275\234\344\270\232/demo02.js" "b/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/\345\242\236\345\210\240\346\224\271\344\275\234\344\270\232/demo02.js" new file mode 100644 index 0000000000000000000000000000000000000000..9ca8a9026f1c74621a99c2986a00d9ce4afcc641 --- /dev/null +++ "b/\346\226\271\347\220\274/20230214-\345\212\240\345\207\217\344\271\230\351\231\244\344\275\234\344\270\232/\345\242\236\345\210\240\346\224\271\344\275\234\344\270\232/demo02.js" @@ -0,0 +1,28 @@ +let count={ + add:function(num1,num2){ + return(num1+num2); + }, + sub:function(num1,num2){ + return(num1-num2); + }, + mul:function(num1,num2){ + return num1*num2; + }, + div:function(num1,num2){ + return num1/num2; + }, + handle:function(num1,num2,symbal){ + if(!Number(num1)){ + console.log("num1不是数字"); + return false; + } + if(!Number(num2)){ + console.log("num2不是数字"); + return false; + } + // if(symbal=="add") return this.add(num1,num2) + //return eval("this[symbal](num1,num2)"); + return this[symbal](num1,num2); + } +} +module.exports=count; \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/0.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/0.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1dd3380cdc803bdfe9a1dcb15f5825a018f1dcf6 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/0.txt" @@ -0,0 +1 @@ +516 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/1.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/1.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2e66562e2705f8e5c5ddccceeecaab861194f30a --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/1.txt" @@ -0,0 +1 @@ +49 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/10.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/10.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e9769c1995e8b1252e3c144f3be360587d5fe310 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/10.txt" @@ -0,0 +1 @@ +759 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/11.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/11.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1c3e15e55e92fba0f98a8c87b771de24437edeb2 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/11.txt" @@ -0,0 +1 @@ +371 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/12.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/12.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b66073e9e4a1640993bf4d0f6e9e51ca33634ec0 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/12.txt" @@ -0,0 +1 @@ +586 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/13.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/13.txt" new file mode 100644 index 0000000000000000000000000000000000000000..136c8cacf37562e0e40c7ee7fe9b30e214a616d1 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/13.txt" @@ -0,0 +1 @@ +342 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/14.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/14.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1fb8d9e69e69176dcaf94f76f644aa67d53a7995 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/14.txt" @@ -0,0 +1 @@ +601 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/15.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/15.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7371afb09c216542b49bc443a3a57567c87116fb --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/15.txt" @@ -0,0 +1 @@ +236 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/16.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/16.txt" new file mode 100644 index 0000000000000000000000000000000000000000..473995f402cba2afa276f045ef848fcbddef3b47 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/16.txt" @@ -0,0 +1 @@ +494 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/17.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/17.txt" new file mode 100644 index 0000000000000000000000000000000000000000..66079bda3a7a6fc0aa17ca480fbb175077e6d0ad --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/17.txt" @@ -0,0 +1 @@ +750 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/18.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/18.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f79f5e337ea18102bf116113d489fb73bd210e37 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/18.txt" @@ -0,0 +1 @@ +153 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/19.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/19.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cb28afbd3c61fe2dce75f1167ad47625fdec9b9e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/19.txt" @@ -0,0 +1 @@ +313 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/2.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/2.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4a722e9c7f37ab695fe3e4cec5d18ca4b540b508 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/2.txt" @@ -0,0 +1 @@ +552 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/20.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/20.txt" new file mode 100644 index 0000000000000000000000000000000000000000..707e2574997140b593d917b65e5ec20e6e9dea01 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/20.txt" @@ -0,0 +1 @@ +853 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/21.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/21.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b8e817d4f8350da183e38145325940a42494db8a --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/21.txt" @@ -0,0 +1 @@ +255 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/22.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/22.txt" new file mode 100644 index 0000000000000000000000000000000000000000..495ae252f0ccba7cb30f39a2737131a2734406b6 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/22.txt" @@ -0,0 +1 @@ +464 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/23.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/23.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6eac4a65cde9135c747b7d858a570e928a1f7b5d --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/23.txt" @@ -0,0 +1 @@ +292 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/24.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/24.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cb16690c5e43d5c3869eeb02969fbc7d01cf4bb2 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/24.txt" @@ -0,0 +1 @@ +249 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/25.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/25.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d02412a497f89d3439d3be1b11d2020c9e1e327d --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/25.txt" @@ -0,0 +1 @@ +655 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/26.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/26.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d2c5ed2124821b21d11dcc57f6a116ed29593583 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/26.txt" @@ -0,0 +1 @@ +116 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/27.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/27.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a5b5e0f80574a9027f0861599555b84284347a3b --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/27.txt" @@ -0,0 +1 @@ +181 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/28.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/28.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8d4011ad25d82168b3b8377030f4c232fe2a4118 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/28.txt" @@ -0,0 +1 @@ +412 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/29.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/29.txt" new file mode 100644 index 0000000000000000000000000000000000000000..02416eb97cd292181088235cae7363a1d11cef60 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/29.txt" @@ -0,0 +1 @@ +467 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/3.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/3.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8db1e5f188b2ca253fa389047f6da965ac5f52b9 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/3.txt" @@ -0,0 +1 @@ +522 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/30.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/30.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5c0d33d75a61e20f229801fedcba649fad7ca175 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/30.txt" @@ -0,0 +1 @@ +647 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/31.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/31.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4800c7da68cf871d3228361b50e329df2115f8b7 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/31.txt" @@ -0,0 +1 @@ +58 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/32.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/32.txt" new file mode 100644 index 0000000000000000000000000000000000000000..eb90589d8d59ab4e3bd0e568e76a2d6779227996 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/32.txt" @@ -0,0 +1 @@ +780 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/33.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/33.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ce7f605a46ac20bbe5529f34b8e6b6d19e5e0da1 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/33.txt" @@ -0,0 +1 @@ +683 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/34.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/34.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c21b7b4a7de0d745b5c0887cf7353ef3df29e2d4 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/34.txt" @@ -0,0 +1 @@ +661 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/35.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/35.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7e0a9d2ab79813cf0e9d5e837e7dfc8fd02de1b6 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/35.txt" @@ -0,0 +1 @@ +837 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/36.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/36.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8e6ba7fb6c17b02e5cfafa8c54e1de3cda9c601f --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/36.txt" @@ -0,0 +1 @@ +675 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/37.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/37.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4d190201b6e91e864f97dc628f67bd9b74ac08f3 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/37.txt" @@ -0,0 +1 @@ +950 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/38.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/38.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5be040fc33117d9056d5b46f38d9cea31753a3bd --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/38.txt" @@ -0,0 +1 @@ +808 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/39.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/39.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2975e638ba3df389f654c414d29fa71fbea21367 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/39.txt" @@ -0,0 +1 @@ +788 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/4.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/4.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cbb5735d831582b9cb1038377ec1114c6c947561 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/4.txt" @@ -0,0 +1 @@ +760 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/40.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/40.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3e90fddabaf3ace09fc53f55094d2b34274bb759 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/40.txt" @@ -0,0 +1 @@ +833 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/41.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/41.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0fd0714a51f10639eab0e6a0121977179a7b458a --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/41.txt" @@ -0,0 +1 @@ +103 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/42.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/42.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fb8a210573a155254893b7e53ff3612be28795d7 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/42.txt" @@ -0,0 +1 @@ +428 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/43.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/43.txt" new file mode 100644 index 0000000000000000000000000000000000000000..dd1ec209f3358043353ec9054f1d3bf3416d325e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/43.txt" @@ -0,0 +1 @@ +132 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/44.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/44.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f0b5c72cad2a31240e128db4bc833e782855f796 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/44.txt" @@ -0,0 +1 @@ +57 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/45.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/45.txt" new file mode 100644 index 0000000000000000000000000000000000000000..06690d5eea4908c3d87a6feec2f257bea8cee370 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/45.txt" @@ -0,0 +1 @@ +238 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/46.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/46.txt" new file mode 100644 index 0000000000000000000000000000000000000000..707001d7afbd0346d3562587d5adaedf1499bd90 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/46.txt" @@ -0,0 +1 @@ +927 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/47.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/47.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3f986b9191e0e52d248f98dfac53523d66f88067 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/47.txt" @@ -0,0 +1 @@ +842 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/48.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/48.txt" new file mode 100644 index 0000000000000000000000000000000000000000..51d3b0f9e1ed09bed37ad2f52babf96e8953a42f --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/48.txt" @@ -0,0 +1 @@ +617 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/49.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/49.txt" new file mode 100644 index 0000000000000000000000000000000000000000..105d7d9ad3afc7bb78a0dec4d829880831605dfb --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/49.txt" @@ -0,0 +1 @@ +100 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/5.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/5.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f1efb2054088985fad3cec9900b3f4a7561597b3 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/5.txt" @@ -0,0 +1 @@ +300 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/50.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/50.txt" new file mode 100644 index 0000000000000000000000000000000000000000..70e1a64c23f0dc1eb79598f64221bd0c38f18b97 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/50.txt" @@ -0,0 +1 @@ +144 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/51.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/51.txt" new file mode 100644 index 0000000000000000000000000000000000000000..97a55e1d749c6ac7c783778b6ea2d19cb770909d --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/51.txt" @@ -0,0 +1 @@ +101 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/52.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/52.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ffad77660d58cac71bebe6d65fdb62d4eb628aac --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/52.txt" @@ -0,0 +1 @@ +736 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/53.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/53.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0272c1ec6a29c149b3f5f0abfac50d127942d32d --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/53.txt" @@ -0,0 +1 @@ +987 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/54.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/54.txt" new file mode 100644 index 0000000000000000000000000000000000000000..dc9e6b20e2c6548bf01f9ae63108c9574d102a0e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/54.txt" @@ -0,0 +1 @@ +634 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/55.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/55.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4a8d924028a2939d1a825e445ab19cb445b03a93 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/55.txt" @@ -0,0 +1 @@ +174 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/56.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/56.txt" new file mode 100644 index 0000000000000000000000000000000000000000..20f3ba5854e8d64eeaaf3ec9e70bda106317866f --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/56.txt" @@ -0,0 +1 @@ +710 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/57.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/57.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4e9e288487445d1193130dba3e3c6af29b242115 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/57.txt" @@ -0,0 +1 @@ +63 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/58.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/58.txt" new file mode 100644 index 0000000000000000000000000000000000000000..87d78b292a2cd276be148291b1418e5637d7bcc7 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/58.txt" @@ -0,0 +1 @@ +322 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/59.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/59.txt" new file mode 100644 index 0000000000000000000000000000000000000000..da4c6e99aa6cd502ccd600b9379c040b072aa52b --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/59.txt" @@ -0,0 +1 @@ +297 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/6.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/6.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f9b03274778d1dc4bcc6d91141c5dc44dc25a4c4 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/6.txt" @@ -0,0 +1 @@ +815 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/60.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/60.txt" new file mode 100644 index 0000000000000000000000000000000000000000..99f9f071dc26630c3d51364ba0f006051ee47b71 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/60.txt" @@ -0,0 +1 @@ +502 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/61.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/61.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2a095c4d568d0359f8380b36c8b4cd2178e3e854 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/61.txt" @@ -0,0 +1 @@ +271 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/62.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/62.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d17ea3a7d53f2386709dc4b126817492bee0eb84 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/62.txt" @@ -0,0 +1 @@ +908 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/63.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/63.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6838ebe0e1ed902538f5d44326d5bdaadc08b6be --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/63.txt" @@ -0,0 +1 @@ +574 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/64.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/64.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8d0003f4668834ef1138cf7df42f663fce94ead0 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/64.txt" @@ -0,0 +1 @@ +245 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/65.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/65.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e953fd4efb6e75f9bf318ddf6fb7e303eb1c9bea --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/65.txt" @@ -0,0 +1 @@ +545 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/66.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/66.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d21b6ea29b1029ae0afcb1ec259e56b82b3311ce --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/66.txt" @@ -0,0 +1 @@ +591 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/67.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/67.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ae4ee13c08e7628701b925b8962108bd7643bf6e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/67.txt" @@ -0,0 +1 @@ +200 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/68.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/68.txt" new file mode 100644 index 0000000000000000000000000000000000000000..662106aa47c07d2004e1b55849bba69fea061f2f --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/68.txt" @@ -0,0 +1 @@ +485 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/69.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/69.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7bed0227374ae83cc50da61fd773b5770ea2c733 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/69.txt" @@ -0,0 +1 @@ +828 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/7.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/7.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1a1f7f8270a4352d79f9cc9d01750cbe16e6e850 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/7.txt" @@ -0,0 +1 @@ +190 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/70.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/70.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f03187e185cbf885da81b7fd15daac172b8d9399 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/70.txt" @@ -0,0 +1 @@ +998 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/71.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/71.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3114067d5df4da46d3b2492476013a8bbc42108e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/71.txt" @@ -0,0 +1 @@ +664 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/72.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/72.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c5a644422fb8f683632c43a9973c6f9bf3d5a12e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/72.txt" @@ -0,0 +1 @@ +221 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/73.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/73.txt" new file mode 100644 index 0000000000000000000000000000000000000000..218241b57899d9e15d37bfc5097c581879b0fa37 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/73.txt" @@ -0,0 +1 @@ +966 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/74.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/74.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a8a24cbb2ffcae486289780635dbae63b23a0476 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/74.txt" @@ -0,0 +1 @@ +959 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/75.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/75.txt" new file mode 100644 index 0000000000000000000000000000000000000000..afbe847262c0a530b87f33d06d3526a72dd1d9a4 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/75.txt" @@ -0,0 +1 @@ +126 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/76.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/76.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8bfa2f5ecdcecb29a2a68f2b68907198364f6c90 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/76.txt" @@ -0,0 +1 @@ +86 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/77.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/77.txt" new file mode 100644 index 0000000000000000000000000000000000000000..58e77f35150112bd116c971f0a16e4c29e23433e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/77.txt" @@ -0,0 +1 @@ +215 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/78.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/78.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e1233a6405176c98c5142e093653947622454e9d --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/78.txt" @@ -0,0 +1 @@ +787 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/79.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/79.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9a943a2366930a916cacafd0b3662fe517140b0d --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/79.txt" @@ -0,0 +1 @@ +849 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/8.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/8.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fb8a210573a155254893b7e53ff3612be28795d7 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/8.txt" @@ -0,0 +1 @@ +428 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/80.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/80.txt" new file mode 100644 index 0000000000000000000000000000000000000000..410b14d2ce6f958c13adcb30807e8673074c49d9 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/80.txt" @@ -0,0 +1 @@ +25 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/81.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/81.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ca6d18c238717ddb04f0e8050d4566fa3493b016 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/81.txt" @@ -0,0 +1 @@ +616 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/82.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/82.txt" new file mode 100644 index 0000000000000000000000000000000000000000..560731b56bf1c51dd98fee4303136e403d943dab --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/82.txt" @@ -0,0 +1 @@ +490 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/83.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/83.txt" new file mode 100644 index 0000000000000000000000000000000000000000..99fd4575a5ff12376011dfb2330fa46fa8167e3e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/83.txt" @@ -0,0 +1 @@ +577 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/84.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/84.txt" new file mode 100644 index 0000000000000000000000000000000000000000..104fcf5b4e28106211b72ca265f2915043f68e39 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/84.txt" @@ -0,0 +1 @@ +243 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/85.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/85.txt" new file mode 100644 index 0000000000000000000000000000000000000000..930e0e0f809de1c2b91483856e9646f19e5f7729 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/85.txt" @@ -0,0 +1 @@ +930 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/86.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/86.txt" new file mode 100644 index 0000000000000000000000000000000000000000..db8b6957791f1d8c1ec59584a196b2eaa9f92f76 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/86.txt" @@ -0,0 +1 @@ +948 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/87.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/87.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6dca33d41f092e39af58b262a1918435937931dd --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/87.txt" @@ -0,0 +1 @@ +742 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/88.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/88.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e7fdd11f9ab344eb3006695ea0759e8ce895a721 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/88.txt" @@ -0,0 +1 @@ +807 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/89.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/89.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0e46c908949357261c0db992634d12327ed6fd2a --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/89.txt" @@ -0,0 +1 @@ +698 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/9.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/9.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3ea66354ca42ca53b1c7bf964cab9c4cab52279d --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/9.txt" @@ -0,0 +1 @@ +679 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/90.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/90.txt" new file mode 100644 index 0000000000000000000000000000000000000000..75af06ed6776f1c1e133f3684b1a1f03c44ec429 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/90.txt" @@ -0,0 +1 @@ +315 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/91.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/91.txt" new file mode 100644 index 0000000000000000000000000000000000000000..73181427a2868edd79f087fb2c0ac0fce92314b6 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/91.txt" @@ -0,0 +1 @@ +199 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/92.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/92.txt" new file mode 100644 index 0000000000000000000000000000000000000000..849eaf846afa36e3886600eca759f81d637bd064 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/92.txt" @@ -0,0 +1 @@ +722 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/93.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/93.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8f32b0ba57fc0dafdd620da9e4ce01179920cb20 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/93.txt" @@ -0,0 +1 @@ +969 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/94.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/94.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e39afc8dd2d0b830e59372f6e3c0549322c0a24e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/94.txt" @@ -0,0 +1 @@ +868 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/95.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/95.txt" new file mode 100644 index 0000000000000000000000000000000000000000..233a64e6723e6fc8107fcba2fac0746922f2ecca --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/95.txt" @@ -0,0 +1 @@ +811 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/96.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/96.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ab9f9df04a4600fa523a178c3850b7ad75b96a01 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/96.txt" @@ -0,0 +1 @@ +824 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/97.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/97.txt" new file mode 100644 index 0000000000000000000000000000000000000000..83249da5a136e0e0e9388917c65b042ef5179b5e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/97.txt" @@ -0,0 +1 @@ +784 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/98.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/98.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a0d1ef1a02cc84ad9c6cc2e8f068a3252e86faab --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/98.txt" @@ -0,0 +1 @@ +620 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/99.txt" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/99.txt" new file mode 100644 index 0000000000000000000000000000000000000000..dc9e6b20e2c6548bf01f9ae63108c9574d102a0e --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/files/99.txt" @@ -0,0 +1 @@ +634 \ No newline at end of file diff --git "a/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/zuoye.js" "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/zuoye.js" new file mode 100644 index 0000000000000000000000000000000000000000..f13d8c254e79a85621333dabbdd716fb5275d195 --- /dev/null +++ "b/\346\226\271\347\220\274/20230217-\346\226\207\344\273\266\344\275\234\344\270\232/zuoye.js" @@ -0,0 +1,39 @@ +let fs = require("fs"); + +let fileHandel = { + + createFile: function (fileName, content) { + fs.writeFileSync(fileName, content); + }, + + createRandom: function (maxNum) { + return (Math.round(Math.random() * maxNum) + 1); + }, + + readFile: function (filePath) { + let result = fs.readFileSync(filePath); + return result.toString(); + }, + init: function () { + + for (let i = 0; i < 100; i++) { + let fileName = "./files/" + i + ".txt"; + let num = this.createRandom(1000) + this.createFile(fileName, num + ""); + } + let maxNum = 0; + let name=""; + + for (let j = 0; j < 100; j++) { + let fileName = "./files/" + j + ".txt"; + let content = this.readFile(fileName); + if (maxNum < Number(content)) { + maxNum = Number(content); + name = fileName; + } + } + console.log(maxNum,name); + } +} + +fileHandel.init(); \ No newline at end of file