FridaTveit
42ee359571
Merge pull request #912 from Jiri-Kremser/issue-896-clock-topics
Adding the topics for the clock example
пре 9 година
Jirka Kremser
1cfa291b7a
fixes #896 - adding topics for clock example
пре 9 година
Anurag Sharma
168299f7c5
added topics in bracket-push, simple-cipher, crpto-square and atbash-cipher (#910 )
* added topics in bracket-push, simple-cipher, crpto-square and atbash-cipher
* added topics in bracket-push, simple-cipher, crpto-square and atbash-cipher
пре 9 година
FridaTveit
b605f7be7e
Merge pull request #909 from PatrM/master
added topics for #875 rotational-cipher
пре 9 година
Stuart Kent
2f1606e575
Merge pull request #906 from FridaTveit/RobotSimulatorGridPositionEquals
robot-simulator: improve equals for GridPosition
пре 9 година
Stuart Kent
4e6c4ca8da
Merge pull request #901 from FridaTveit/SaddlePointsImplementComparable
saddle-points: make MatrixCoordinate implement Comparable
пре 9 година
patrick michel
a62f5a48f3
added topics for #875
пре 9 година
Deepak
dcbad56fd5
topics added for slug- palindrome- products (#907 )
* topics added for slug- palindrome- products
* modified topics for slug- palindrome-products
пре 9 година
Patrick M
fe6db45332
added topics for robot simulator (#903 )
* added topics for robot simulator
* removed algorithms as topic
пре 9 година
Alex Escobedo
a845b1be16
Add topics to flatten-array (#904 )
* Add topics to flatten-array
* Fixed identation to 2 spaces
пре 9 година
Frida Tveit
e783c6d807
robot-simulator: improve equals for GridPosition
We recently improved the implementation of equals for GridPosition so
that we could use assertEquals in the tests. However, we only changed
the reference implementation, not the starter implementation. This
changes the starter implementation to be the same as the reference
implementation.
пре 9 година
Stuart Kent
f934338c7d
Remove unused file
пре 9 година
Morten Nygaard Åsnes
5263bcb032
Tournament (#890 )
* Added Tournament exercise
* Added to config and refactored after review
* Added topics and fixed indentation
* Must be unlocked by a core exercise
пре 9 година
Stuart Kent
c627126091
Merge pull request #900 from FridaTveit/FridaShowBio
maintainers.json: show bio for Frida Tveit
пре 9 година
Frida Tveit
c9782c11ba
saddle-points: make MatrixCoordinate implement Comparable
The saddle-points tests make it seem like you can use any kind of set
for your output. However, if you use TreeSet then the tests will fail
because MatrixCoordinate doesn't implement Comparable.
MatrixCoordinate does now implement Comparable to preent this failure.
пре 9 година
Frida Tveit
27d1526b51
maintainers.json: show bio for Frida Tveit
пре 9 година
FridaTveit
27df4af1a3
Merge pull request #857 from deepakavs/master
meetup: add topics
пре 9 година
FridaTveit
bcabf81ba4
Merge pull request #891 from delbertlegg/376_binary_search_tree
Renamed classes and added @Before method to test class
пре 9 година
Eddie Legg
56cb04394e
Renamed classes and added @Before method to test class
changed variable name and made it private
пре 9 година
Deepak
8012bc9e9a
topics modified for meetup slug
пре 9 година
bobatrance
76dc0de704
Adding topics to problem 'Prime Factors' (#885 )
* Adding topics to prime factors
* Adding math as problem area
* Removing recursion as a topic
пре 9 година
FridaTveit
a5f99e9a79
Merge pull request #886 from puripant/patch-1
Add topics to sieve
пре 9 година
puri
06316f04e3
Replace `arrays` with `lists`
пре 9 година
FridaTveit
29840549fd
Merge pull request #888 from mhdsmr2/issue#871
Add topics to problem 'nth-prime'
пре 9 година
FridaTveit
75764826af
Merge pull request #882 from Nik-Mouz/master
Added topics to Matrix exercise. Fixes #852
пре 9 година
Nikolas Mouzourides
f90815c035
Added type_conversion and strings to matrix topics.
пре 9 година
puri
027e8aa525
Add algorithms topic
пре 9 година
Mohammad Sameer
8b7db1296a
Add topics to problem 'nth-prime'
пре 9 година
Frida Tveit
87670fe865
simple-linked-list: use generics
пре 9 година
FridaTveit
c8ae482641
Merge pull request #879 from mortenaa/CollatzConjectureAddTopics
Added Topics to Collatz Conjecture #870
пре 9 година
FridaTveit
68f9c30acb
Merge pull request #880 from mortenaa/MatrixAddStubs
Added stubs to Matrix #547
пре 9 година
FridaTveit
3e707a47bd
Merge pull request #881 from m-a-ge/issue#873
complex-numbers: Add topics for exercise to config.json per #873
пре 9 година
Morten Nygaard Åsnes
9c69daacad
Made class and methods package private
пре 9 година
Morten Nygaard Åsnes
d65902c1a4
Removed equality from topics
пре 9 година
Ilya Khadykin
da1dc2bedb
complex-numbers: Add topics for exercise to config.json per #873
пре 9 година
FridaTveit
d6de63ded1
Merge pull request #878 from FridaTveit/AddNewExerciseSectionToContributingDoc
Add new exercise section to the contributing guide
пре 9 година
puri
d3b676e3f7
Add topics to sieve
пре 9 година
Nikolas Mouzourides
b25389d11d
Added topics to Matrix exercise. Fixes #852
пре 9 година
Morten Nygaard Åsnes
5dba3e1ee0
Added stubs to Matrix #547
пре 9 година
Morten Nygaard Åsnes
3d5d0fde47
Added Topics to Collatz Conjecture #870
пре 9 година
Frida Tveit
e7905e5c34
Add new exercise section to the contributing guide
пре 9 година
FridaTveit
74f6f46056
Merge pull request #869 from delbertlegg/549_Create_largest-series-product
Added stubs to LargestSeriesProductCalculator
пре 9 година
Eddie Legg
38b75f7fbe
Added stubs to LargestSeriesProductCalculator
Make changes per review comments
Made class and methods package private
пре 9 година
Frida Tveit
65e2f24012
binary-search: use generics
The binary-search tests force the practitioner to generify the class
but only one type (integer) was actually being used in the tests.
This should be changed so that more than one type is actually used, to
make it more clear that generics are necessary and to demonstrate how
generics is used.
As discussed in #230 , move linked-list to one of the last difficulty 6
exercises, so that binary-seach is the first exercise that introduces
generics.
Add a hint to the binary-search exercise to explain generics as this
is now the first exercise to require it.
Fixes #230 .
пре 9 година
Mohammad Sameer
cbf0c7a8da
Add topics to problem kindergarten-garden (#867 )
* Completes #853
* Add more topics to problem Kindergarten-garden
* Correct the identation
* Correct the identation again
пре 9 година
FridaTveit
821af98b6a
Merge pull request #864 from m-a-ge/issue#378
list-ops: add hint of using static methods per #378
пре 9 година
FridaTveit
220c5100a1
Merge pull request #865 from m-a-ge/issue#850
wordy: add topics for exercise to config.json per #850
пре 9 година
Ilya Khadykin
aa82ee20b5
list-ops: add hint of using static methods per #378
пре 9 година
Ilya Khadykin
1d809a0150
wordy: add topics for exercise to config.json per #850
пре 9 година
Edgar
98e117de45
added topics to perfect numbers (#863 )
* added topics to perfect numbers
* updated topics
* fixed tabs
пре 9 година