Giter VIP home page Giter VIP logo

Comments (37)

omiomi avatar omiomi commented on May 27, 2024

282 王遥 url:codeurl

from algorithm004-01.

yangfengstu avatar yangfengstu commented on May 27, 2024

学号:301
姓名:花夕
代码连接:week 01作业代码

from algorithm004-01.

shniu avatar shniu commented on May 27, 2024

学号:716
姓名:niushaohan (github: shniu)
代码链接:Week 01 作业代码

from algorithm004-01.

GeekUniversity avatar GeekUniversity commented on May 27, 2024

学号:716
姓名:niushaohan (github: shniu)
代码链接:Week 01 作业代码

赞~做了好多题!

from algorithm004-01.

shniu avatar shniu commented on May 27, 2024

学号:301
姓名:花夕
代码连接:week 01作业代码

@yangfengstu 作业提交的格式不太对,按照提交做的要求是每道题一个文件,文件名按照 LeetCode_题号_学号.go 的方式

from algorithm004-01.

yangfengstu avatar yangfengstu commented on May 27, 2024

学号:301
姓名:花夕
代码连接:week 01作业代码

@yangfengstu 作业提交的格式不太对,按照提交做的要求是每道题一个文件,文件名按照 LeetCode_题号_学号.go 的方式

嗯哼 我还真没看到有这个要求 我去瞅瞅

from algorithm004-01.

chenhaiyangs avatar chenhaiyangs commented on May 27, 2024

学号:462
姓名:陈海洋
代码链接:https://github.com/chenhaiyangs/algorithm004-02/tree/master/Week%2001/id_462

from algorithm004-01.

chenhaiyangs avatar chenhaiyangs commented on May 27, 2024

学号:301
姓名:花夕
代码连接:week 01作业代码

反转数组我觉得可以写的再简洁一些

from algorithm004-01.

chenhaiyangs avatar chenhaiyangs commented on May 27, 2024

学号:716
姓名:niushaohan (github: shniu)
代码链接:Week 01 作业代码

赞~做了好多题!

每个题所有解法都写了一遍。厉害

from algorithm004-01.

lynch0227 avatar lynch0227 commented on May 27, 2024

学号: 277
姓名: Kevin
代码链接: Week01 作业代码

from algorithm004-01.

shniu avatar shniu commented on May 27, 2024

学号:462
姓名:陈海洋
代码链接:https://github.com/chenhaiyangs/algorithm004-02/tree/master/Week%2001/id_462

nums1[writeIndex]=tempnums1[p];
writeIndex++;

// 可以简写为
nums1[writeIndex++]=tempnums1[p];

此外 可以注意下 Java 编程的 Code Style,比如最简单的

for(int i=0;i<m;i++){
    tempnums1[i] = nums1[i];
}

// 根据 Code Style 应该
for (int i = 0; i < m; i++) {
    tempnums1[i] = nums1[i];
}
// 注意空格

Code style 参考这里

另外,88 题可以考虑使用原地移动元素达到合并数组的目的

from algorithm004-01.

hippieZhou avatar hippieZhou commented on May 27, 2024

学号:701
姓名:hippieZhou
代码链接:Week 01 作业代码

from algorithm004-01.

mrglint avatar mrglint commented on May 27, 2024

学号:006
姓名:微光
代码链接:Week 01作业

from algorithm004-01.

yangfengstu avatar yangfengstu commented on May 27, 2024

学号:301
姓名:花夕
代码连接:week 01作业代码

反转数组我觉得可以写的再简洁一些

是的呢 go用的还不是很熟。可以再简洁些。

from algorithm004-01.

shiyibo avatar shiyibo commented on May 27, 2024

学号:531
姓名:shiyibo
代码链接:Week 01 作业代码

from algorithm004-01.

nextRainbow avatar nextRainbow commented on May 27, 2024

学号:143
姓名:囚徒
代码连接:week 01作业代码

from algorithm004-01.

nextRainbow avatar nextRainbow commented on May 27, 2024

学号:462
姓名:陈海洋
代码链接:https://github.com/chenhaiyangs/algorithm004-02/tree/master/Week%2001/id_462

哇,代码写得不错。除零代码,还可以简洁一些。

from algorithm004-01.

nextRainbow avatar nextRainbow commented on May 27, 2024

学号:716
姓名:niushaohan (github: shniu)
代码链接:Week 01 作业代码

哇!太棒了!

from algorithm004-01.

Joeylu-master avatar Joeylu-master commented on May 27, 2024

学号:143
姓名:囚徒
代码连接:week 01作业代码

LeetCode_189,这道题是不是空间复杂度高了?

from algorithm004-01.

EasonFeng5870 avatar EasonFeng5870 commented on May 27, 2024

学号:218
姓名:EasonFeng5870
代码链接:week 01作业代码

from algorithm004-01.

EasonFeng5870 avatar EasonFeng5870 commented on May 27, 2024

学号:531
姓名:shiyibo
代码链接:Week 01 作业代码

去重和数组右移都实现了2套算法。赞。

from algorithm004-01.

EasonFeng5870 avatar EasonFeng5870 commented on May 27, 2024

学号:716
姓名:niushaohan (github: shniu)
代码链接:Week 01 作业代码

实现了好多啊,在数组去重当中,看到了作者对边界值的考虑还是很严谨的,赞,学习了。

from algorithm004-01.

EasonFeng5870 avatar EasonFeng5870 commented on May 27, 2024

学号:301
姓名:花夕
代码连接:week 01作业代码

您在一个go文件里实现了多个算法,要是能分开就更好了,不过写的很好,学习了。

from algorithm004-01.

fangqingsong avatar fangqingsong commented on May 27, 2024

学号:668
姓名:房青松
代码链接:week 01 作业代码

from algorithm004-01.

Fangbaso4 avatar Fangbaso4 commented on May 27, 2024

学号:668
姓名:房青松
代码链接:week 01 作业代码

学习了,每题的分析做的特别到位,解法也列的很详细

from algorithm004-01.

nextRainbow avatar nextRainbow commented on May 27, 2024

学号:143
姓名:囚徒
代码连接:week 01作业代码

LeetCode_189,这道题是不是空间复杂度高了?

嗯,3nlongn,有点高.但仍有很大上升空间。但确实想了很久没想到好办法!

from algorithm004-01.

suanzhai avatar suanzhai commented on May 27, 2024

学号:491
姓名:乌鸦
代码链接:Week 01 代码链接

from algorithm004-01.

suanzhai avatar suanzhai commented on May 27, 2024

学号:462
姓名:陈海洋
代码链接:https://github.com/chenhaiyangs/algorithm004-02/tree/master/Week%2001/id_462

代码写的很简洁,受教了!

from algorithm004-01.

suanzhai avatar suanzhai commented on May 27, 2024

学号:218
姓名:EasonFeng5870
代码链接:week 01作业代码

代码细节很用心啊,代码风格也很不错,受教了!

from algorithm004-01.

suanzhai avatar suanzhai commented on May 27, 2024

学号:143
姓名:囚徒
代码连接:week 01作业代码

第一题的时间复杂度有点高啊,不过看起来老兄肯定是自己用心写的。

from algorithm004-01.

suanzhai avatar suanzhai commented on May 27, 2024

学号:006
姓名:微光
代码链接:Week 01作业

好多问题都使用了多种解法,比我用心多了,我一般是想到一个更好的就不肯把当前的解法写完了。

from algorithm004-01.

tigerzhang08 avatar tigerzhang08 commented on May 27, 2024

学号:218
姓名:tigerzhang
代码链接:week 01 作业代码

from algorithm004-01.

suanzhai avatar suanzhai commented on May 27, 2024

学号:218
姓名:tigerzhang
代码链接:week 01 作业代码

和官方题解雷同的有些多啊。

from algorithm004-01.

tigerzhang08 avatar tigerzhang08 commented on May 27, 2024

学号:218
姓名:tigerzhang
代码链接:week 01 作业代码

和官方题解雷同的有些多啊。

就是背的官方解题思路……

from algorithm004-01.

Yanun avatar Yanun commented on May 27, 2024

学号:176
姓名:yanun
代码链接:Week 01 作业

from algorithm004-01.

soyomo avatar soyomo commented on May 27, 2024

学号:441
姓名:chenfeng
代码链接:第一周

from algorithm004-01.

Asianwyz avatar Asianwyz commented on May 27, 2024

学号:711
姓名:亚洲
代码链接:Week 01 作业

from algorithm004-01.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.