algorithms-sedgewick-wayne icon indicating copy to clipboard operation
algorithms-sedgewick-wayne copied to clipboard

Thanks a lot!

Open jikibaoboken opened this issue 6 years ago • 27 comments

Thanks a lot for what you've done. Goods Luck!

jikibaoboken avatar Sep 25 '18 13:09 jikibaoboken

Thanks for the feedback. It is always great to know that the work in this repository is helping more people :)

reneargento avatar Sep 25 '18 21:09 reneargento

Piling on - I didn't want to create another ticket for this - but @reneargento thanks so much for this repository.

I'm sure the academics had good reason to not publish their answers, but seeing a solution key like this gives me the confidence that I can have a go at the problems, refer to places where I'm stuck at, and also check my answers - and know that I'll never be in the "dark" without knowing if I built the right solution.

You've created a gold-mine for all students trying to self-study. Thanks again.

adityamenon avatar Nov 26 '18 08:11 adityamenon

@adityamenon thank you! Great feedbacks like these show me that the effort put into creating this repository have been worth it. I'm happy to know it is being useful to you and others.

I just updated the repository read-me by the way. The repository is now complete, with solutions to 100% of the exercises in the book!

reneargento avatar Nov 26 '18 22:11 reneargento

👏 that's amazing!

adityamenon avatar Nov 27 '18 02:11 adityamenon

@reneargento I was going through this book and wanted to confirm my answers then found this. Thank you very much for doing this. 👏👏👏

Madonahs avatar Nov 28 '18 04:11 Madonahs

Thanks for the feedback @Madonahs, I'm happy to know that the repository has been useful to you!

reneargento avatar Nov 28 '18 22:11 reneargento

You're awesome dude ,thanks for this. Quick question, what was your learning resource to actually solving these problems?

KhueHoang avatar Dec 30 '18 04:12 KhueHoang

Thanks @KhueHoang! To solve the problems I used mostly the book and searches on the Internet for more information on the topics.

reneargento avatar Jan 04 '19 13:01 reneargento

Thanks for you work, I have learned a lot.

DeliciousOrange avatar Jan 20 '19 18:01 DeliciousOrange

Thanks @DeliciousOrange, I'm happy to know the repository was useful.

reneargento avatar Jan 26 '19 15:01 reneargento

Thank you for your hard work!

YaochengTong avatar Feb 26 '19 22:02 YaochengTong

Thanks for your hard work, best wishes for you!

cpprookie avatar Feb 29 '20 08:02 cpprookie

Thanks @YaochengTong and @cpprookie!

reneargento avatar Mar 11 '20 22:03 reneargento

I am currently self learning algorithms and having a resource to fact-check your answers helps sooo much ! Thank you @reneargento for creating this invaluable resource for us self learners.

falcon78 avatar Jun 01 '20 13:06 falcon78

Thanks @falcon78, it is good to know that the repository is being useful to you!

reneargento avatar Jun 03 '20 18:06 reneargento

I have recently finished the book, and I'm really happy I've found this precious repository! It saved much of my time and helped with many tasks (most notably those from the last chapters). @reneargento, thank you so much for solving all the tasks, uploading the solutions to GitHub and for your aspire to fix or explain all the issues created (and especially many issues I've created, some of which were wrong)! Please, keep this repository alive, as it will surely help many more people in the future.

dragon-dreamer avatar Jun 13 '20 14:06 dragon-dreamer

@dragon-dreamer I'm happy the repository has been useful to you! You have made many valuable contributions to it as well, thanks for all of them!

reneargento avatar Jun 13 '20 16:06 reneargento

Awesome! Even the Creative Problems have detailed answers and explanations. Thank you SO MUCH!

Calabor-Hoc avatar Sep 19 '20 17:09 Calabor-Hoc

Thanks @Calabor-Hoc!

reneargento avatar Sep 24 '20 00:09 reneargento

I'll like to point out in Chapter 2/Section 1/Exercise5.txt: Condition 2: less(a[j], a[j - 1]) -> When the When the array is ordered A B C D E F G Should be: When the array is ordered.

Also, chapter2/section1/Exercise6.txt: Selection Sort does do n exchanges but it does it on itself.

glucu avatar Jan 21 '21 19:01 glucu

Muchísimas gracias! Esta aportación es realmente muy valiosa, es muy díficil aprender todo esto sin una guía. De verdad mil gracias por tomarte el tiempo de resolverlo y compartirlo con la comunidad. Si algún día decides venir a Guadalajara, Jal. MX., avisame y te invitaré unas cervezas y un tequila.

Saludos! 🤜🤛

emmanuel-huitrado avatar Mar 03 '22 07:03 emmanuel-huitrado

Gracias @emmanuel-huitrado!

reneargento avatar Mar 08 '22 00:03 reneargento

Thanks a lot! It's very useful for self learners like me. And I find a litter mistake in Chapter 2/Section 2/Exercise10_FasterMerge.java:

  int indexRight = high;
  int arrayIndex = low;

  while (indexLeft <= middle) {
      if (aux[indexLeft].compareTo(aux[indexRight]) <= 0) {
          array[arrayIndex] = aux[indexLeft];
          indexLeft++;
      } else {
          array[arrayIndex] = aux[indexRight];
          indexRight--;
      }
  
      arrayIndex++;
  }

It should be while (indexLeft <= indexRight) but not while (indexLeft <= middle) . Good Luck!

XinXiaoIsMe avatar Mar 20 '22 04:03 XinXiaoIsMe

Thanks @XinXiaoIsMe. About that exercise, I answered you on https://github.com/reneargento/algorithms-sedgewick-wayne/pull/243

reneargento avatar Mar 20 '22 17:03 reneargento

Thanks man! I went through the programming assignments a while ago and want to get back into reading the book, the solutions are super useful!

rlabuonora avatar Apr 24 '22 21:04 rlabuonora

It is good to know that the repository is being useful to you @rlabuonora!

reneargento avatar May 29 '22 01:05 reneargento

Thank you very much

saraalaa avatar Sep 14 '23 08:09 saraalaa