Giter VIP home page Giter VIP logo

Comments (179)

Fanlu91 avatar Fanlu91 commented on August 22, 2024 6

第一周题目 (with leetcode.com)

方便使用leetcode.com的同学访问题目地址 :)

链表

简单:https://leetcode.com/problems/remove-duplicates-from-sorted-list/
简单:https://leetcode.com/problems/merge-two-sorted-lists
中等:https://leetcode.com/problems/swap-nodes-in-pairs/
中等:https://leetcode.com/problems/linked-list-cycle-ii
困难:https://leetcode.com/problems/reverse-nodes-in-k-group/

数组

简单:https://leetcode.com/problems/sort-array-by-parity/
简单:https://leetcode.com/problems/sort-array-by-parity-ii/
中等:https://leetcode.com/problems/search-in-rotated-sorted-array-ii/
中等:https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/
困难:https://leetcode.com/problems/search-in-rotated-sorted-array

简单:https://leetcode.com/problems/valid-parentheses/
中等:https://leetcode.com/problems/next-greater-element-ii/
困难:https://leetcode.com/problems/maximum-frequency-stack/

递归

简单:https://leetcode.com/problems/longest-univalue-path/
中等:https://leetcode.com/problems/partition-to-k-equal-sum-subsets/
困难:https://leetcode.com/problems/special-binary-string/

排序

简单:https://leetcode.com/problems/valid-anagram/
中等:https://leetcode.com/problems/wiggle-sort-ii/
困难:https://leetcode.com/problems/maximum-gap/

二分查找

简单:https://leetcode.com/problems/arranging-coins/
中等:https://leetcode.com/problems/powx-n/
困难:https://leetcode.com/problems/dungeon-game/

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024 1

学号:002 Username:cwbcheng
第一周作业链接:https://github.com/cwbcheng/algorithm/tree/master/Week_01/id_2
学习感言:-

LeetCode_24_2.cs 两两交换链表中的节点 的题目,感觉还是递归更适合一些,while循环的处理方式中来回赋值好多次,容易乱,不知道你在开发的时候遇到付错值的情况没有,我在写的时候,画图处理,但是发现还是有一个地方没有想清楚。
还有就是我看你的代码应该是在开发工具中写的 , 可以试试在leetcode上,脱离代码提示功能去试试,自己感觉还是提升挺大哈哈

from algorithm.

ericyang89 avatar ericyang89 commented on August 22, 2024 1

学号:023 Username:ericyang89
第一周作业链接:20-valid-parentheses
905-sort-array-by-parity
学习感言:#67

from algorithm.

tidelgl avatar tidelgl commented on August 22, 2024 1

学号:064 Username:李路
第一周作业链接(JavaScript):https://github.com/tidelgl/algorithm/tree/week-1/Week_01/id_64
学习感言:#163

from algorithm.

ajun-victor avatar ajun-victor commented on August 22, 2024 1

学号:016 Username:ajun
第一周作业链接:https://github.com/ajun-victor/algorithm/tree/master/Week_01/id_16
学习感言:#167

from algorithm.

GeekUniversity avatar GeekUniversity commented on August 22, 2024
  1. 学号:000 Username:GeekUniversity
  2. 第一周作业链接:https://github.com/GeekUniversity/assignment01/blob/master/helloworld.py
  3. 学习感言:#9

from algorithm.

Lugyedo avatar Lugyedo commented on August 22, 2024

怎么知道自己的学号

from algorithm.

cwbcheng avatar cwbcheng commented on August 22, 2024

学号:002 Username:cwbcheng
第一周作业链接:https://github.com/cwbcheng/algorithm/tree/master/Week_01/id_2
学习感言:#61

from algorithm.

v1xingyue avatar v1xingyue commented on August 22, 2024

学号:007 Username:v1xingyue
第一周作业链接:https://github.com/v1xingyue/algorithm/tree/master/Week_01/id_7
学习感言:33

from algorithm.

otkinlife avatar otkinlife commented on August 22, 2024

学号:061 otkinlife(贾凯超)
第一周作业链接:
- 个人仓库: https://github.com/otkinlife/algorithm/tree/master/Week_01/id_61
- 训练营仓库:-
学习感言:#36

from algorithm.

Fanlu91 avatar Fanlu91 commented on August 22, 2024

学号:026 Username:Fanlu91
第一周作业链接:https://github.com/Fanlu91/algorithm/tree/master/Week_01/id_26
学习感言:#44

from algorithm.

DevinSu avatar DevinSu commented on August 22, 2024

学号:091 Username:DevinSu(籍东文)
第一周作业链接:https://github.com/Fanlu91/algorithm/tree/master/Week_01/id_91
学习感言:#47

from algorithm.

zjg23 avatar zjg23 commented on August 22, 2024

学号:027 Username:zjg23
第一周作业链接:https://github.com/zjg23/algorithm/tree/master/Week_01/id_27
学习感言: #50

from algorithm.

SherryShi0108 avatar SherryShi0108 commented on August 22, 2024

学号:086 Username: SherryShi0108
第一周作业链接:https://github.com/SherryShi0108/algorithm/tree/master/Week_01/id_86
学习感言:#51

from algorithm.

lglove avatar lglove commented on August 22, 2024

学号:024 Username: lglove(李戈)
第一周作业链接:https://github.com/lglove/algorithm/blob/master/Week_01/id_24/leet_code.md
学习感言:#54

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024

学号:126 Username:suncen0505
第一周作业链接:https://github.com/suncen0505/algorithm/tree/master/Week_01/id_126
学习感言:#59

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024

学号:007 Username:v1xingyue
第一周作业链接:https://github.com/v1xingyue/algorithm/tree/master/Week_01/id_7
学习感言:33

go语言的,好像头一次看go语言,哈哈 :=(声明并赋值) 这个都没有看懂,去百度了

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024

学号:061 otkinlife(贾凯超)
第一周作业链接:

还没有做到你的这142题,果断退出,等我自己做一遍后再来回复

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024

学号:024 Username: lglove(李戈)
第一周作业链接:https://github.com/lglove/algorithm/blob/master/Week_01/id_24/leet_code.md
学习感言:#54

83题:
我第一个想到的办法是 创建一个新的ListNode,不断的拿旧的去和新listNode对比,如果有重复的,就不插入,如果没有就插入。

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024

学号:086 Username: SherryShi0108
第一周作业链接:https://github.com/SherryShi0108/algorithm/tree/master/Week_01/id_86
学习感言:#51

多种语言。。。
c# 我的第一想法也是 创建中间变量,然后去赋值 。 if判断中第二个可以加else,这样可以省一次执行
python 最近在学python,但是第一行的注释这句第一反应竟然没有想到是注释,不过重新熟悉了下Python语法,我现在最大的感触就是python的语句末尾不带分号,java需要写分号,在leetcode上写java代码的时候总忘了加分号。

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024

学号:086 Username: SherryShi0108
第一周作业链接:https://github.com/SherryShi0108/algorithm/tree/master/Week_01/id_86
学习感言:#51

多种语言。。。
c# 我的第一想法也是 创建中间变量,然后去赋值 。 if判断中第二个可以加else,这样可以省一次执行
python 最近在学python,但是第一行的注释这句第一反应竟然没有想到是注释,不过重新熟悉了下Python语法,我现在最大的感触就是python的语句末尾不带分号,java需要写分号,在leetcode上写java代码的时候总忘了加分号。

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024

学号:086 Username: SherryShi0108
第一周作业链接:https://github.com/SherryShi0108/algorithm/tree/master/Week_01/id_86
学习感言:#51

多种语言。。。
c# 我的第一想法也是 创建中间变量,然后去赋值 。 if判断中第二个可以加else,这样可以省一次执行
python 最近在学python,但是第一行的注释这句第一反应竟然没有想到是注释,不过重新熟悉了下Python语法,我现在最大的感触就是python的语句末尾不带分号,java需要写分号,在leetcode上写java代码的时候总忘了加分号。

from algorithm.

suncen0505 avatar suncen0505 commented on August 22, 2024

学号:026 Username:Fanlu91
第一周作业链接:https://github.com/Fanlu91/algorithm/tree/master/Week_01/id_26
学习感言:#44

可以把题目的文件名换成老师给定的格式,这样方便对应题目。还有就是leetcode上直接写代码,他会帮忙验证好多种边界,感觉还挺好的,自己去做验证 ,可能有想不到的边界情况

from algorithm.

zhaozhifu0 avatar zhaozhifu0 commented on August 22, 2024

1、学号:155 Username:zhaozhifu0
2、第一周作业链接:https://github.com/zhaozhifu0/algorithm/tree/master/Week_01/id_155
3、学习感言:#65

from algorithm.

Uriah6140 avatar Uriah6140 commented on August 22, 2024

1、学号:008 Username:WuLei
2、第一周作业链接:https://github.com/Uriah6140/algorithm/tree/master/Week_01/id_8
3、学习感言:--

from algorithm.

HongChao6 avatar HongChao6 commented on August 22, 2024

1、学号:131 Username:HongChao6
2、第一周作业链接:https://github.com/HongChao6/algorithm/tree/master/Week_01/id_131
3、学习感言:#69

from algorithm.

jianghaoyuan2007 avatar jianghaoyuan2007 commented on August 22, 2024

学号:038 Username:jianghaoyuan2007
第一周作业链接:https://github.com/jianghaoyuan2007/algorithm/tree/master/Week_01/id_38
学习感言: #64

from algorithm.

smz198181 avatar smz198181 commented on August 22, 2024

学号:141 Username:smz198181
第一周作业链接:https://github.com/smz198181/algorithm/tree/master/Week_01/id_141
学习感言:#34

from algorithm.

kdbreboot avatar kdbreboot commented on August 22, 2024

学号:003 Username:battlezh
第一周作业链接:https://github.com/battlezh/algorithm/tree/master/Week_01/id_3
学习感言:#79

from algorithm.

salanhess avatar salanhess commented on August 22, 2024

学号:040 Username:salanhess
第一周作业链接:https://github.com/salanhess/algorithm/tree/master/Week_01/id_40
学习感言:#81

from algorithm.

shimmer236 avatar shimmer236 commented on August 22, 2024

学号:062 Username:shimmer236
第一周作业链接:https://github.com/shimmer236/algorithm/tree/master/Week_01/id_62
学习感言:#62

from algorithm.

FollowMyHeart avatar FollowMyHeart commented on August 22, 2024

学号:086 Username: SherryShi0108
第一周作业链接:https://github.com/SherryShi0108/algorithm/tree/master/Week_01/id_86
学习感言:#51

多种语言实现!
是值得学习一下。那需要学习的东西很多了!

from algorithm.

sadcat avatar sadcat commented on August 22, 2024

学号:113 Username:sadcat
第一周作业链接:#87
学习感言:#88

from algorithm.

hapiman avatar hapiman commented on August 22, 2024

学号:117 Username: hapiman(彭建)
第一周作业链接:https://github.com/hapiman/algorithm/tree/master/Week_01/id_117
学习感言:#89

from algorithm.

jacoesad avatar jacoesad commented on August 22, 2024

学号:059 Username:jacoesad
第一周作业链接:https://github.com/jacoesad/algorithm/tree/master/Week_01/id_59
学习感言:#91

from algorithm.

isnotnull avatar isnotnull commented on August 22, 2024
  1. 学号:074 Username:isnotnull
  2. 第一周作业链接:https://github.com/isnotnull/algorithm/tree/master/Week_01/id_74
  3. 学习感言: #93

from algorithm.

aiter avatar aiter commented on August 22, 2024
  1. 学号:014 Username: aiter
  2. 第一周作业链接:https://github.com/aiter/algorithm/tree/master/Week_01/id_14
  3. 学习感言: #94

from algorithm.

yxs354 avatar yxs354 commented on August 22, 2024
  1. 学号:044 Username: yxs354
  2. 第一周作业链接:https://github.com/yxs354/algorithm/tree/master/Week_01/id_44
  3. 学习感言: #96

from algorithm.

AHaoPang avatar AHaoPang commented on August 22, 2024
  1. 学号:009 UserName:AHaoPang
  2. 第一周作业链接:https://github.com/AHaoPang/algorithm/tree/master/Week_01/id_9
  3. 学习感言:#100

from algorithm.

GradyWong avatar GradyWong commented on August 22, 2024

1.学号:069 Username:GradyWong
2.第一周作业链接:https://github.com/GradyWong/algorithm/tree/master/Week_01/id_69
3.学习感言:#101

from algorithm.

yimeng avatar yimeng commented on August 22, 2024

1.学号:128 Username:yimeng
2.第一周作业链接:https://github.com/yimeng/algorithm/tree/master/Week_01/id_128
3.学习感言:#108

from algorithm.

ellie88 avatar ellie88 commented on August 22, 2024

1.学号:094 Username:yuanxiao
2.第一周作业链接: https://github.com/ellie88/algorithm/tree/master/Week_01/id_94
3.学习感言: #107

from algorithm.

hotboy avatar hotboy commented on August 22, 2024

学号:034 Username:hotboy
第一周作业链接:https://github.com/hotboy/algorithm/tree/master/Week_01/id_34
学习感言:#76

from algorithm.

Maybrittnelson avatar Maybrittnelson commented on August 22, 2024
  1. 学号:116 Username:Maybrittnelson
  2. 第一周作业链接:https://github.com/Maybrittnelson/algorithm/tree/master/Week_01/id_116
  3. 学习感言:#110

from algorithm.

yuanyunxu avatar yuanyunxu commented on August 22, 2024

1 学号:122 Username:yuanyunxu
2 第一周作业链接:https://github.com/algorithm001/algorithm/tree/master/Week_01/id_122
3 学习感言:#112

from algorithm.

hotboy avatar hotboy commented on August 22, 2024

学号:086 Username: SherryShi0108
第一周作业链接:https://github.com/SherryShi0108/algorithm/tree/master/Week_01/id_86
学习感言:#51

太棒了,写了三种算法,用三种语言实现的。比我的效率还高。
不过同学你的命名让我有点看懵了,文件、方法名和LeeCode不好对起来

from algorithm.

lovingcodesk avatar lovingcodesk commented on August 22, 2024

学号:121 Username:lovingcodesk
第一周作业链接:https://github.com/lovingcodesk/algorithm/tree/master/Week_01/id_121
学习感言:#114

from algorithm.

kevinnerd avatar kevinnerd commented on August 22, 2024

学号:127 Username:kevinnerd
第一周作业链接:https://github.com/kevinnerd/algorithm/tree/master/Week_01/id_127
学习感言: #115

from algorithm.

MrMuddle avatar MrMuddle commented on August 22, 2024

学号:085 Username:MrMuddle
第一周作业链接:https://github.com/MrMuddle/algorithm/tree/master/Week_01/id_85
学习感言: #119

from algorithm.

xiangfeifei54 avatar xiangfeifei54 commented on August 22, 2024

学号: 077 username:xiangfeifei54
第一周作业链接:id_77
学习感言:【77-week1 】总结

from algorithm.

alxjerr avatar alxjerr commented on August 22, 2024

学号:097 Username: alxjerr (侯玉麟)
第一周作业链接:https://github.com/alxjerr/algorithm/tree/master/Week_01/id_97
学习感言:#122 (comment)

from algorithm.

alxjerr avatar alxjerr commented on August 22, 2024

学号:126 Username:suncen0505
第一周作业链接:https://github.com/suncen0505/algorithm/tree/master/Week_01/id_126
学习感言:#59

deleteDuplicates使用的递归实现,代码比我写的简洁,清晰。

from algorithm.

yanlingli3799 avatar yanlingli3799 commented on August 22, 2024

学号:118(李颜翎)
第一周作业链接:https://github.com/yanlingli3799/algorithm/tree/master/Week_01/id_118
学习感言:#125

from algorithm.

otkinlife avatar otkinlife commented on August 22, 2024

学号:126 Username:suncen0505
第一周作业链接:https://github.com/suncen0505/algorithm/tree/master/Week_01/id_126
学习感言:#59

83 思路正确,我一开始的时候想的麻烦了。忽略了已排序这个关键点,用了额外空间去记录。学习了

from algorithm.

bitwei avatar bitwei commented on August 22, 2024

1 学号:99 Username:bite
2 第一周作业链接:https://github.com/algorithm001/algorithm/tree/master/Week_01/id_99
3 学习感言:#130

from algorithm.

yuzewang avatar yuzewang commented on August 22, 2024

学号:136 Username:yuzewang
第一周作业链接:https://github.com/yuzewang/algorithm/tree/master/Week_01/id_136
学习感言:#134

from algorithm.

wahaha2019 avatar wahaha2019 commented on August 22, 2024

学号:063 小组:09 Username:wahaha2019
第一周作业
学习感言
实现语言:Java

用另外一个思路解二分查找,虽也是递归,但很好理解,代码见:
https://github.com/wahaha2019/algorithm-exercise/blob/master/src/main/java/com/github/wahaha2019/exercise/SortedArrayList.java

from algorithm.

otkinlife avatar otkinlife commented on August 22, 2024

学号:118(李颜翎)
第一周作业链接:https://github.com/yanlingli3799/algorithm/tree/master/Week_01/id_118
学习感言:#125

借鉴了 687 题的解题思路,自底向上分析更好理解。

from algorithm.

gebitang avatar gebitang commented on August 22, 2024

学号:087 Username: gebitang
第一周作业链接:https://github.com/gebitang/algorithm/tree/master/Week_01/id_87
学习感言:#139

from algorithm.

tolookme avatar tolookme commented on August 22, 2024

学号:078 Username:tolookme
第一周作业链接:https://github.com/tolookme/algorithm/tree/master/Week_01/id_78
学习感言:#140

from algorithm.

otkinlife avatar otkinlife commented on August 22, 2024
  1. 学号:014 Username: aiter
  2. 第一周作业链接:https://github.com/aiter/algorithm/tree/master/Week_01/id_14
  3. 学习感言: #94

242题我用的第二种效率比较低的方式。一开始并没有想到第一种方式,学到了

from algorithm.

otkinlife avatar otkinlife commented on August 22, 2024
  1. 学号:009 UserName:AHaoPang
  2. 第一周作业链接:https://github.com/AHaoPang/algorithm/tree/master/Week_01/id_9
  3. 学习感言:#100

注释写的很明白,对该题的理解有很大的帮助

from algorithm.

yanlingli3799 avatar yanlingli3799 commented on August 22, 2024

学号:061 otkinlife(贾凯超)
第一周作业链接:

凯超是不是没把做过的题全提交,只看到两道。

from algorithm.

songsmith avatar songsmith commented on August 22, 2024

学号:137

  • Username: songsmith

第一周作业链接:https://github.com/songsmith/algorithm/tree/master/Week_01/id_137
学习感言: #142

from algorithm.

otkinlife avatar otkinlife commented on August 22, 2024

学号:007 Username:v1xingyue
第一周作业链接:https://github.com/v1xingyue/algorithm/tree/master/Week_01/id_7
学习感言:33

Go语言的语法还是比较生涩,阅读起来困难。看来还是需要多学习。

from algorithm.

yanlingli3799 avatar yanlingli3799 commented on August 22, 2024

学号:027 Username:zjg23
第一周作业链接:https://github.com/zjg23/algorithm/tree/master/Week_01/id_27
学习感言: #50

dummy这个命名好佛系,看到好几位同学这么写过了,哈哈哈哈

from algorithm.

yanlingli3799 avatar yanlingli3799 commented on August 22, 2024

学号: 077 username:xiangfeifei54
第一周作业链接:id_77
学习感言:【77-week1 】总结

厉害了,做了好多题目

from algorithm.

yanlingli3799 avatar yanlingli3799 commented on August 22, 2024

学号:085 Username:MrMuddle
第一周作业链接:https://github.com/MrMuddle/algorithm/tree/master/Week_01/id_85
学习感言: #119

有用例也有ListNode.java定义,看来是本地跑过的,赞

from algorithm.

yanlingli3799 avatar yanlingli3799 commented on August 22, 2024

1.学号:128 Username:yimeng
2.第一周作业链接:https://github.com/yimeng/algorithm/tree/master/Week_01/id_128
3.学习感言:#108

如果考察的点高级语言已经有实现的话,工程中可以直接用,写算法的时候尽量不用,写完了之后再去看看类库是怎么实现的。

from algorithm.

SeanMrLi avatar SeanMrLi commented on August 22, 2024

1、学号:108 usename:SeanMrLi
2.第一周作业链接:https://github.com/SeanMrLi/algorithm/tree/master/Week_01/id_108
3.学习感言:#148

from algorithm.

yanlingli3799 avatar yanlingli3799 commented on August 22, 2024

学号:002 Username:cwbcheng
第一周作业链接:https://github.com/cwbcheng/algorithm/tree/master/Week_01/id_2
学习感言:#61

905可以再考虑一下原地交换怎么做~

from algorithm.

okbengii avatar okbengii commented on August 22, 2024

1.学号:081 Username:abinbao
2.第一周作业链接:https://github.com/abinbao/algorithm-1/tree/master/Week_01/id_81
3.学习感言:#149

from algorithm.

ma451152002 avatar ma451152002 commented on August 22, 2024
  1. 学号:058 Username:maguangjun(马光君)
  2. 第一周作业链接:
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_83_058.java
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_24_058.java
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_21_058.java
  3. 学习感言:#147

from algorithm.

bin-albin avatar bin-albin commented on August 22, 2024

学号:100 Username:bin-albin
第一周作业链接:https://github.com/bin-albin/algorithm/tree/master/Week_01/id_100
学习感言:#150

from algorithm.

361028096 avatar 361028096 commented on August 22, 2024

学号:053 Username:361028096
第一周作业链接:https://github.com/361028096/algorithm/tree/master/Week_01/id_53
学习感言:#152

from algorithm.

bin-albin avatar bin-albin commented on August 22, 2024
  1. 学号:058 Username:maguangjun(马光君)
  2. 第一周作业链接:
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_83_058.java
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_24_058.java
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_21_058.java
  3. 学习感言:#147

学号:126 Username:suncen0505
第一周作业链接:https://github.com/suncen0505/algorithm/tree/master/Week_01/id_126
学习感言:#59

deleteDuplicates使用的递归实现,代码比我写的简洁,清晰。

递归的这种思路没有想到,学习了!

from algorithm.

bin-albin avatar bin-albin commented on August 22, 2024
  1. 学号:058 Username:maguangjun(马光君)
  2. 第一周作业链接:
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_83_058.java
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_24_058.java
    https://github.com/algorithm001/algorithm/blob/master/Week_01/id_58/LeetCode_21_058.java
  3. 学习感言:#147

我也学着把注释加上,不然以后真不知道自己写的是啥!

from algorithm.

meibaorui avatar meibaorui commented on August 22, 2024

1、学号:052 Username:meibaorui
2、第一周作业链接:
https://github.com/meibaorui/algorithm/tree/master/Week_01/id_52
3、学习感言:#158

from algorithm.

flowbywind avatar flowbywind commented on August 22, 2024

1、学号:104 UserName:flowbywind
2、第一周作业链接:
https://github.com/flowbywind/algorithm/tree/master/Week_01/id_104
3、学习感言:
#159

from algorithm.

renzhongxing avatar renzhongxing commented on August 22, 2024

1、学号:098 UserName: renzhongxing
2、第一周作业连接:
https://github.com/renzhongxing/algorithm/tree/master/Week_01/id_98
3、学习感言:
#161

from algorithm.

oxcz avatar oxcz commented on August 22, 2024

学号:135 Username:oxcz
第一周作业链接:https://github.com/oxcz/algorithm/tree/master/Week_01/id_135
学习感言:#164

from algorithm.

shironghui0593 avatar shironghui0593 commented on August 22, 2024

学号:065 Username:shironghui0593
第一周作业链接:https://github.com/shironghui0593/algorithm/tree/master/Week_01/id_65
学习感言:#166
编程语言:java

from algorithm.

570035853 avatar 570035853 commented on August 22, 2024

学号:029 Username:570035853
第一周作业链接:https://github.com/570035853/algorithm/tree/master/Week_01/id_29
学习感言: #170

from algorithm.

tommy1989 avatar tommy1989 commented on August 22, 2024

学号:075 Username:tommy1989
第一周作业链接:https://github.com/tommy1989/algorithm/tree/master/Week_01/id_75
学习感言:#171

from algorithm.

glve1027 avatar glve1027 commented on August 22, 2024

学号:031 Username:glve1027
第一周作业链接:https://github.com/glve1027/algorithm/tree/master/Week_01/id_31
学习感言:#178
编程语言:Swift

from algorithm.

MrQingQuan avatar MrQingQuan commented on August 22, 2024

学号:046 Username:MrQingQuan
第一周作业链接:https://github.com/MrQingQuan/algorithm/tree/master/Week_01/id_46
学习感言:#168
编程语言:C++

from algorithm.

MrQingQuan avatar MrQingQuan commented on August 22, 2024

学号:016 Username:ajun
第一周作业链接:https://github.com/ajun-victor/algorithm/tree/master/Week_01/id_16
学习感言:#167

终于看到有C++了,傀儡指针学习了,以后学着用用

from algorithm.

brokge avatar brokge commented on August 22, 2024

学号:080 UserName: brokge
第一周作业链接:https://github.com/brokge/algorithm/tree/master/Week_01/id_80
学习感言:#183
编程语言:Java

from algorithm.

wangxu0 avatar wangxu0 commented on August 22, 2024

学号:134 Username:wxisme
第一周作业链接:https://github.com/wxisme/algorithm/tree/master/Week_01/id_134
学习感言:#188

from algorithm.

HongChao6 avatar HongChao6 commented on August 22, 2024

学号:016 Username:ajun
第一周作业链接:https://github.com/ajun-victor/algorithm/tree/master/Week_01/id_16
学习感言:#167

同样是C++工作者,以后共同学习,有个疑惑 是硬币那道题,我知道用等差数列可以实现,但是写不出来代码,能提供一下**么

from algorithm.

haotone avatar haotone commented on August 22, 2024

学号:015 Username:童昊
第一周作业链接:https://github.com/haotone/algorithm/tree/master/Week_01/id_15
学习感言:#187

from algorithm.

linear063 avatar linear063 commented on August 22, 2024

学号:042 Username: linear063
第一周作业链接:https://github.com/linear063/algorithm/tree/master/Week_01/id_42
学习感言:#190

from algorithm.

wangxu0 avatar wangxu0 commented on August 22, 2024

学号:007 Username:v1xingyue
第一周作业链接:https://github.com/v1xingyue/algorithm/tree/master/Week_01/id_7
学习感言:33

Good job.

from algorithm.

jonjia avatar jonjia commented on August 22, 2024
  1. 学号:130 Username:jonjia
  2. 第一周作业链接:https://github.com/jonjia/algorithm/tree/master/Week_01/id_130
  3. 学习感言:#195
  4. 实现语言:JavaScript

from algorithm.

tolookme avatar tolookme commented on August 22, 2024

学号:087 Username: gebitang
第一周作业链接:https://github.com/gebitang/algorithm/tree/master/Week_01/id_87
学习感言:#139

leetcode 24 递归实现 很简洁,学习了。

from algorithm.

luckypeak avatar luckypeak commented on August 22, 2024

学号:124 Username: luckypeak
第一周作业链接:https://github.com/luckypeak/algorithm/tree/master/Week_01/id_124
学习感言: #205

from algorithm.

hfcc8685 avatar hfcc8685 commented on August 22, 2024

学号: 071, UserName: hfcc8685
第一周作业链接: https://github.com/hfcc8685/algorithm/tree/master/Week_01/id_71
学习感言: #204

from algorithm.

haotone avatar haotone commented on August 22, 2024

学号:087 Username: gebitang
第一周作业链接:https://github.com/gebitang/algorithm/tree/master/Week_01/id_87
学习感言:#139

review LeetCode 24 思路是将链表结点两两一组进行递归计算,返回计算后的头结点。终止条件head.next ==null 奇数个结点的特殊情况

from algorithm.

baidulinux avatar baidulinux commented on August 22, 2024

学号 : 143 username: baidulinux
第一周作业链接 :https://github.com/baidulinux/algorithm/tree/master/Week_01/id_143
学习感言 :#209

from algorithm.

HongChao6 avatar HongChao6 commented on August 22, 2024

学号:015 Username:童昊
第一周作业链接:https://github.com/haotone/algorithm/tree/master/Week_01/id_15
学习感言:#187

我是用C++ 看你代码正好可以熟悉一下JAVA的编写方式,学习啦

from algorithm.

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.