├── .gitignore ├── 000_novice ├── README.md ├── c │ ├── Makefile │ ├── lists.c │ ├── lists.h │ ├── minunit.h │ ├── problems.c │ ├── problems.h │ └── unittest.c ├── go │ ├── problems.go │ └── problems_test.go ├── javascript │ └── problems.js ├── perl │ ├── problems.pm │ └── tests.t ├── python │ └── problems.py ├── ruby │ ├── problems.rb │ └── tests.rb └── rust │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── problems.rs ├── LICENSE └── README.mkd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/.gitignore -------------------------------------------------------------------------------- /000_novice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/README.md -------------------------------------------------------------------------------- /000_novice/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/c/Makefile -------------------------------------------------------------------------------- /000_novice/c/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/c/lists.c -------------------------------------------------------------------------------- /000_novice/c/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/c/lists.h -------------------------------------------------------------------------------- /000_novice/c/minunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/c/minunit.h -------------------------------------------------------------------------------- /000_novice/c/problems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/c/problems.c -------------------------------------------------------------------------------- /000_novice/c/problems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/c/problems.h -------------------------------------------------------------------------------- /000_novice/c/unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/c/unittest.c -------------------------------------------------------------------------------- /000_novice/go/problems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/go/problems.go -------------------------------------------------------------------------------- /000_novice/go/problems_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/go/problems_test.go -------------------------------------------------------------------------------- /000_novice/javascript/problems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/javascript/problems.js -------------------------------------------------------------------------------- /000_novice/perl/problems.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/perl/problems.pm -------------------------------------------------------------------------------- /000_novice/perl/tests.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/perl/tests.t -------------------------------------------------------------------------------- /000_novice/python/problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/python/problems.py -------------------------------------------------------------------------------- /000_novice/ruby/problems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/ruby/problems.rb -------------------------------------------------------------------------------- /000_novice/ruby/tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/ruby/tests.rb -------------------------------------------------------------------------------- /000_novice/rust/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "rust" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /000_novice/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/rust/Cargo.toml -------------------------------------------------------------------------------- /000_novice/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/rust/src/lib.rs -------------------------------------------------------------------------------- /000_novice/rust/src/problems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/000_novice/rust/src/problems.rs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulohrpinheiro/test-driven-learning/HEAD/README.mkd --------------------------------------------------------------------------------