xxks-kkk / shuati

Interview questions central repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

shuati

Build Status

This is the respository that I put my systematic algorithm learning into practice by solving various interview questions. This is also the place where I practice different programming languages.

Steps to developing a usable algorithm.

  • Model the problem.
  • Find an algorithm to solve it.
  • Fast enough? Fits in memory?
  • If not, figure out why not.
  • Find a way to address the problem.
  • Iterate until satisfied

Usage

The repo contains a mixture of different programming languages. To build and test solutions written in specific language, follow steps below:

C, C++

To build all C, C++ solutions, run

$ mkdir -p build && cd build && cmake .. && make -j4

Java

To build Java solutions, find Makefile inside the directory that program resides, and run make

Rust

To test all Rust solutions, run

$ cd rust
$ cargo test

Go

To test all Go solutions, run

$ cd shuati
$ go test ./...

About

Interview questions central repo

License:GNU General Public License v3.0


Languages

Language:C++ 69.2%Language:Python 14.2%Language:Java 8.3%Language:C 4.8%Language:CMake 2.0%Language:Go 0.7%Language:Rust 0.6%Language:Shell 0.1%Language:Makefile 0.1%Language:Emacs Lisp 0.0%