Commit Graph

220 Commits

Author SHA1 Message Date
Aditya Bhargava
75bf3017d0 Merge pull request #172 from seanyu4296/add-purescript-solution-for-chapter-1-chapter-2
Add purescript solution for chapter 1 chapter 2
2020-09-14 12:52:10 -05:00
Aditya Bhargava
a777aa6068 Merge pull request #167 from moogacs/master
add recursive soln. for python/03_recursion
2020-09-14 10:56:40 -05:00
Aditya Bhargava
1459b8928f Merge pull request #163 from lamalex/recursion-in-rust
Add rust examples to 03_recursion
2020-09-14 10:55:42 -05:00
Aditya Bhargava
7506a133f4 Merge pull request #162 from lamalex/selection-sort-in-rust
Add Rust examples to 02_selection_sort
2020-09-14 10:55:27 -05:00
Aditya Bhargava
0c8dc34e93 Merge pull request #161 from ZGennadiy/fix_es6_selection_sort
Update selection sort ES6 for keep original array immutable
2020-09-14 10:55:10 -05:00
Aditya Bhargava
cb4b1e74b9 Merge pull request #160 from joeczar/patch-1
Create Scala Solutions
2020-09-14 10:54:55 -05:00
Aditya Bhargava
e4a909e94d Merge pull request #159 from fhl43211/master
Please consider adding 01_dijkstras_algorithm in C++ 11
2020-09-14 10:54:09 -05:00
Aditya Bhargava
9dae3a4d1c Merge pull request #157 from rusikf/rk/fix_recursive_ruby_max
Fix 04_recursive_max on ruby
2020-09-14 10:53:53 -05:00
Aditya Bhargava
d001cbd41e Merge pull request #156 from OlexanderD/patch-5
Changed code style according to new Java versions
2020-09-14 10:53:35 -05:00
Aditya Bhargava
34a907f236 Merge pull request #155 from vlada1001/master
Added ".cpp" extension
2020-09-14 10:53:12 -05:00
Aditya Bhargava
437d215a45 Merge pull request #153 from TimoSci/bfs
Bfs
2020-09-14 10:52:27 -05:00
Aditya Bhargava
d83a2b173c Merge pull request #152 from TimoSci/patch-1
More concise Rubyish code.
2020-09-14 10:52:00 -05:00
Aditya Bhargava
e6b0d98443 not quite responsive enough anymore 2020-09-14 10:51:36 -05:00
Aditya Bhargava
90c719afb6 Merge pull request #151 from BryanChan777/patch-2
Update README.md
2020-09-14 10:50:22 -05:00
Aditya Bhargava
0a64ea2802 Merge pull request #150 from neverovski/patch-1
Update zero factorial Golang
2020-09-14 10:49:40 -05:00
Aditya Bhargava
a5d9073242 Merge pull request #143 from Alexandrshy/issues-142-formatting-problems-and-example-for-dynamic-programming
Fixed formatting problems, added JSDoc, deleted duplicate example
2020-09-14 10:48:50 -05:00
Aditya Bhargava
77a3f8fcc7 Merge pull request #141 from Alexandrshy/issues-140-formatting-problems-and-example-for-greedy-algorithms
Fixed formatting problems
2020-09-14 10:48:25 -05:00
Aditya Bhargava
b2867050d7 Merge pull request #139 from Alexandrshy/issues-138-formatting-problems-and-example-for-dijkstras-algorithm
Fixed formatting problems, added JSDoc
2020-09-14 10:47:56 -05:00
Aditya Bhargava
cb33a62e8a Merge pull request #137 from Alexandrshy/issues-136-formatting-problems-and-example-for-breadth-first-search
Fixed formatting problems, added JSDoc, added example for JS, fixed e…
2020-09-14 10:47:43 -05:00
Aditya Bhargava
0d4a806c14 Merge pull request #135 from Alexandrshy/issues-134-formatting-problems-hash-tables
Fixed formatting problems
2020-09-14 10:47:23 -05:00
Aditya Bhargava
e8a02536f3 Fixed formatting problems, example and JSDoc (#133) 2020-09-14 10:46:57 -05:00
Alexandr Shulaev
34df0a6d08 Fixed formatting problems and JSDoc (#131)
* Fixed formatting problems and JSDoc

* Added returns for JSDoc
2020-09-14 10:46:30 -05:00
seanyu4296
2f166a0ee1 Update selection sort 2020-08-05 12:58:43 +00:00
seanyu4296
23f31b4f3f Cleanup packages dhall and remove notes 2020-08-04 11:32:03 +00:00
seanyu4296
32fc3cec95 Add chapter 2 selection sort solution 2020-07-31 07:25:32 +00:00
seanyu4296
3f693b8cf2 update package set 2020-07-31 07:10:55 +00:00
seanyu4296
1a3782d950 update readme with link to main repo 2020-07-31 07:08:50 +00:00
seanyu4296
a59a2b8886 Fix Readme module name 2020-07-31 07:02:40 +00:00
seanyu4296
ad8e62d690 Add purescript solution for chapt 1 2020-07-31 06:58:43 +00:00
=
345d09b69e add recursive soln. 2020-06-03 15:28:01 +02:00
Alexander Launi
16a4ae12f6 Small syntax change in 03_factorial 2020-03-21 18:30:37 -04:00
Alexander Launi
24c91a4a0b Implement factorial using generic mathematics 2020-03-21 17:38:17 -04:00
Alexander Launi
2ff4f42d43 Implement countdown using generic mathematics 2020-03-21 16:43:51 -04:00
Alexander Launi
2aa26293b0 Add factorial examples in Rust 2020-03-21 16:20:51 -04:00
Alexander Launi
64e231a8c6 Add greet example in Rust 2020-03-21 16:16:22 -04:00
Alexander Launi
858e1e71e7 Add recursive countdown example in Rust 2020-03-21 16:08:56 -04:00
Alexander Launi
b0414be22e Add Rust examples to 02_selection_sort 2020-03-21 15:20:34 -04:00
ZGennadiy
cad619574d Update selection sort ES6
Added copy values from original array, because it must be immutable. Without that after call selectionSort origin array will become empty.
2020-03-17 10:24:44 +03:00
Joe Czarnecki
43fb096e64 removed an extra if clause 2020-03-06 14:39:52 +01:00
Joe Czarnecki
4e5867cff1 Update Scala Solutions 2020-03-03 16:54:25 +01:00
Joe Czarnecki
a6502e0af0 Update Scala Solutions 2020-03-03 16:46:16 +01:00
Joe Czarnecki
696a657c6f Create Scala Solutions
I've been working through the book and I was surprised to see there wasn't a Scala Solution here. I created a mutable version as close to the original as possible and immutable recursive version.
2020-03-03 16:16:49 +01:00
fhl43211
e6558351a8 Use lambda function 2020-02-21 09:06:58 -08:00
fhl43211
4fd96f6987 Create cpp file 2020-02-20 17:23:54 -08:00
Ruslan Korolev
891eec2873 fix 04_recursive_max on ruby 2020-01-17 18:29:34 +02:00
Alexander Danilchenko
52a5a7cc24 Changed code style according to new Java versions
Changed long and ugly type declarations with "var" keyword (Java 10).  Also fixed warning about raw usage of HashSet without type specification.
2020-01-12 18:34:55 +02:00
Vladimir Pavlovic
d771cb21a0 Rename 01_longest_common_subsequence to 01_longest_common_subsequence.cpp 2020-01-03 00:46:37 +01:00
TimoSci
ff7ae962c1 edit comments 2019-12-08 13:31:33 +01:00
TimoSci
1f6cf7d460 avoid use of global variables; it is more rubyish to represent a graph as a class 2019-12-08 13:07:44 +01:00
TimoSci
70ddf46cb3 represent record of searched verices as a hash for O(1) lookup 2019-12-08 12:56:36 +01:00