提交 c4de7078 编写于 作者: 梦境迷离's avatar 梦境迷离

add count

上级 34934d89
......@@ -16,3 +16,4 @@ tmp/
*.log
node_modules/
*.lock
*.bak
......@@ -17,10 +17,14 @@
[中文](./README.md) | English
# Leetcode teamed up
## Leetcode teamed up
It also supports LintCode, nowcoder and Jiuzhang algorithm
### Progress
[Count by Authors](countByAuthors.md)
### Registration route
Just create a issue or leave a message at the end of the [dreamylost's blog](https://dreamylost.cn)
......
......@@ -17,10 +17,14 @@
中文 | [English](./README-en.md)
# Leetcode 组队刷题
## Leetcode 组队刷题
同样支持 LintCode、牛客网、九章算法
### 进度
[按人统计](countByAuthors.md)
### 报名途径
提交 issue 或 [博客留言](https://dreamylost.cn)
......
......@@ -46,4 +46,7 @@ do
done
# create article list
bash generate_art_list.sh > article_list.md
\ No newline at end of file
bash generate_art_list.sh > article_list.md
# count
bash countByAuthors.sh
\ No newline at end of file
Order by Join time
####Scala
dreamylost:=> 100
sweeneycai:=> 17
####Java (match *.Java)
dreamylost:=> 324
ccccmaster:=> 3
poorguy:=> 1
wkk:=> 25
####Rust
dreamylost:=> 93
####Kotlin
dreamylost:=> 6
####Python
laozhang:=> 59
#!/bin/bash
# TODO, generate this shell automatically
echo "Order by Join time" > countByAuthors.md
echo "####Scala" >> countByAuthors.md
echo "dreamylost:=> "`find ./scala-leetcode/src/main/scala/io/github/dreamylost -name "Leetcode*.scala" | wc -l | awk '{print $1}'` >> countByAuthors.md
echo "" >> countByAuthosr.md
echo "sweeneycai:=> "`find ./scala-leetcode/src/main/scala/io/github/sweeneycai -name "Leetcode*.scala" | wc -l | awk '{print $1}'` >> countByAuthors.md
echo "" >> countByAuthors.md
echo "####Java (match *.Java)" >> countByAuthors.md
echo "dreamylost:=> "`find ./java-leetcode/src/main/java/io/github/dreamylost -name "*.java" | wc -l | awk '{print $1}'` >> countByAuthors.md
echo "" >> countByAuthors.md
echo "ccccmaster:=> "`find ./java-leetcode/src/main/java/io/github/ccccmaster -name "*.java" | wc -l | awk '{print $1}'` >> countByAuthors.md
echo "" >> countByAuthors.md
echo "poorguy:=> "`find ./java-leetcode/src/main/java/io/github/poorguy -name "*.java" | wc -l | awk '{print $1}'` >> countByAuthors.md
echo "" >> countByAuthors.md
echo "wkk:=> "`find ./java-leetcode/src/main/java/io/github/wkk -name "*.java" | wc -l | awk '{print $1}'` >> countByAuthors.md
echo "" >> countByAuthors.md
echo "####Rust" >> countByAuthors.md
dreamylostLeetcode=`find ./rust-leetcode/src -name "leetcode*.rs" | wc -l | awk '{print $1}'`
dreamylostInterview=`find ./rust-leetcode/src -name "interview*.rs" | wc -l | awk '{print $1}'`
echo "dreamylost:=> "$(($dreamylostLeetcode + $dreamylostInterview)) >> countByAuthors.md
echo "" >> countByAuthors.md
echo "####Kotlin" >> countByAuthors.md
echo "dreamylost:=> "`find ./kotlin-leetcode/src/main/kotlin/io/github/dreamylost -name "Leetcode*.kt" | wc -l | awk '{print $1}'` >> countByAuthors.md
echo "" >> countByAuthors.md
echo "####Python" >> countByAuthors.md
echo "laozhang:=> "`find ./python-leetcode/laozhang -name "leetcode*.py" | wc -l | awk '{print $1}'` >> countByAuthors.md
echo "" >> countByAuthors.md
## append
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册