[聚合文章] 程序员面试金典 Cracking the Coding Interview(含单元测试和训练模式)持续更新中

程序员 2017-12-30 20 阅读

Acknowledgement

Credits should go to Gayle Laakmann McDowell for her great work on Cracking the Coding Interview .

Why this repo

Ctci stands out among many interview books by providing not only questions but also incremental hints and solutions. However, Ctci doesn't come with tests. This repo attempts to fill this gap by adding tests for each question.

  • First, writing tests helps to understand the question.
  • Second, we can improve our testing skills
  • Last but not least, tests allow to try out many different solutions.

Get started

This repo includes two git branches:

  • practice : Only tests are provided. It's up to you to find a solution.
  • master : Both tests and solutions are provided. Compare yours with mine.

To get started, please follow the steps below:

  1. Fork this repository

  2. Checkout practice branch to solve problems

  3. Compare with the reference. For instance,you want to check the optimal solution for IsUnique

    git diff master -- src/main/java/arraystring/_01_01_IsUnique.java

  4. Give your feedback! If you find better solutions or tests, we'd love to see your Pull Request.

Keep practicing

Don't worry if you stuck on questions. When it happens, go out for a walk, eat an ice cream or send me a tweet . Come back later when you feel better. The most important thing is that you keep practicing.

注:本文内容来自互联网,旨在为开发者提供分享、交流的平台。如有涉及文章版权等事宜,请你联系站长进行处理。