Skip to content

Latest commit

 

History

History
189 lines (178 loc) · 12.4 KB

README.md

File metadata and controls

189 lines (178 loc) · 12.4 KB

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.