Skip to content

Solving problems from the Cracking the Coding Interview book.

Notifications You must be signed in to change notification settings

xenoteo/Cracking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Cracking

Solving problems from the Cracking the Coding Interview book.

Project structure

com.xenoteo
└── chapterX
    └── questionY
        ├── Main.java
        ├── Solution.java
        └── README.md

In Solution.java the actual solution is provided, sometimes with different approaches. The main algorithmic logic is in this file.

In Main.java there are some examples of use of Solution class.

In README.md there is a description of the problem.

Note: for some problems another file structure can be provided (e.g., if more classes are required).

Problems

Note: there are solutions only for those problems where coding approach can be used. If there is no coding solution for a specific problem, then this problem can or should be solved without it.