hukun01
854f78c80c
Update tf-23-monadic.py. We can eliminate the extra parameter in the __init__. Let the naming in get_input method more clear.
2014-02-12 09:23:02 -08:00
Crista Lopes
be92fc4d6d
Shorten this a little to fit in 1 page
2014-01-26 08:55:25 -08:00
Crista Lopes
6d6f59de5c
Minor renaming
2014-01-26 08:39:38 -08:00
crista
bff0e4b6d7
Merge pull request #21 from mgiorgio/master
...
Avoid creating word_freqs outside and passing it around.
2014-01-26 08:29:39 -08:00
Crista Lopes
dcf6e6426a
Eliminate the use of global variables; makes the example cleaner.
2014-01-26 08:28:17 -08:00
Matías
e2a8d8f017
Avoid creating word_freqs outside and passing it around.
2014-01-24 21:11:38 -08:00
Crista Lopes
390126b6f6
Moved the sh script that was in the candy factory style to the The One style, because pipes are really monadic in nature. Great example too.
2014-01-24 17:08:06 -08:00
crista
ed25b5a778
Merge pull request #20 from bravelittlescientist/master
...
Clojure Code Golf
2014-01-22 20:56:13 -08:00
Eugenia Gabrielova
6bbf023586
Changes print formatting statement, removing some characters
2014-01-21 22:04:36 -08:00
Eugenia Gabrielova
cfa820c394
Adds Java interop and changes remove to checking set
2014-01-21 21:48:26 -08:00
Eugenia Gabrielova
71fe15b79d
Added my clojure code golf, passes tests
2014-01-21 21:11:57 -08:00
crista
0514124aa2
Merge pull request #19 from mgiorgio/master
...
Using function composition for printing the results
2014-01-17 08:19:22 -08:00
Matías
0ffe4b3fd6
Adding documentation for print_all
2014-01-16 21:47:54 -08:00
Matías
fdf9a855f2
Using function composition to print the results as well.
2014-01-16 21:45:45 -08:00
Crista Lopes
c309e8bca5
Minor cleanups
2014-01-15 08:02:49 -08:00
Crista Lopes
72b62229fe
Undo one of the last changes regarding the print out
2014-01-12 21:29:28 -08:00
Crista Lopes
56f05355a9
Compact a bit by removing empty lines
2014-01-12 07:28:26 -08:00
crista
f32942d452
Merge pull request #17 from smtriplett/master
...
Add a check to handle input text with fewer than 25 words.
2014-01-12 07:19:49 -08:00
crista
f0eed1acd2
Merge pull request #16 from mgiorgio/master
...
Support input files that do not finish with CRLF.
2014-01-12 07:19:13 -08:00
smtriplett
4d3ba0ba1a
Add a check to handle input text with fewer than 25 words.
2014-01-11 18:19:32 -08:00
Matías
84f3db6a71
Support input files that do not finish with CRLF.
2014-01-10 23:19:53 -08:00
crista
ebff0a19b6
Update README.md
2014-01-07 14:17:55 -08:00
crista
c7d0ab8b3d
Update README.md
2014-01-07 14:17:28 -08:00
crista
999e4ff6e5
Update README.md
2014-01-07 14:16:53 -08:00
crista
2354104798
Update README.md
2014-01-07 14:16:30 -08:00
crista
63716dd935
Update README.md
2014-01-07 14:16:02 -08:00
crista
d8de0bce95
Update README.md
2014-01-07 14:15:36 -08:00
crista
5a480b576b
Update README.md
2014-01-07 14:15:06 -08:00
crista
0d0eb72d57
Update README.md
2014-01-07 14:14:45 -08:00
crista
6c85a78756
Update README.md
2014-01-07 14:14:25 -08:00
crista
cff850c693
Update README.md
2014-01-07 14:14:00 -08:00
crista
74955a7326
Update README.md
2014-01-07 14:13:29 -08:00
crista
7803a599fa
Update README.md
2014-01-07 14:13:08 -08:00
crista
32f9778c9c
Update README.md
2014-01-07 14:12:40 -08:00
crista
f883174361
Update README.md
2014-01-07 14:12:15 -08:00
crista
454d7366f5
Update README.md
2014-01-07 14:11:49 -08:00
crista
f6abb80fe8
Update README.md
2014-01-07 14:11:24 -08:00
crista
08ce183f1c
Update README.md
2014-01-07 14:10:51 -08:00
crista
7c005045df
Update README.md
2014-01-07 14:10:24 -08:00
crista
bc9ef1872e
Update README.md
2014-01-07 14:10:00 -08:00
crista
8596096e61
Update README.md
2014-01-07 14:08:39 -08:00
crista
991e756d79
Merge pull request #13 from davidfstr/patch-1
...
Wordsmith comments about word-frequency records.
2014-01-07 13:59:59 -08:00
crista
5b5c40ef42
Merge pull request #14 from davidfstr/things-in-java
...
things: Port to Java.
2014-01-07 13:59:25 -08:00
crista
bd47a04afe
Merge pull request #15 from davidfstr/things-refactor
...
things: Refactor.
2014-01-07 13:56:31 -08:00
David Foster
d28cc63b4b
things: Refactor DataStorageManager to be more idiomatic.
2014-01-05 20:57:57 -08:00
David Foster
331b841a5c
things: Port to Java.
2014-01-05 20:57:30 -08:00
David Foster
737aa9ef0d
things: Refactor.
...
Specifically:
* Remove dead assignments to _data and _stop_words.
* Convert _word_freqs from class field to instance field to avoid side effects.
* Remove no-op call ''.join(self._data) because self._data is guaranteed to be a string.
2014-01-05 20:54:14 -08:00
David Foster
a01535250c
Add .gitignore
2014-01-05 20:42:10 -08:00
David Foster
ebad839634
Wordsmith comments about word-frequency records.
2014-01-05 16:00:32 -08:00
Crista Lopes
03dfe92fa3
Fixed numbers in READMEs
2014-01-05 07:43:22 -08:00