Vitor Oliveira
82f445f8eb
Delete ohms_law.rb
2021-08-22 14:28:49 -07:00
Vitor Oliveira
02db2b9550
Merge pull request #166 from tachyons/patch-1
...
Fix the complexity memoization check
2021-08-22 14:27:48 -07:00
Vitor Oliveira
f0a155e66f
Merge pull request #160 from jsca-kwok/jk-max-69-number
...
Add solution for max 69 number algorithm
2021-08-22 14:24:33 -07:00
Vitor Oliveira
1eefa231a9
Minor change
2021-08-22 14:22:39 -07:00
github-actions
0ff443d695
updating DIRECTORY.md
2021-08-22 21:21:22 +00:00
Vitor Oliveira
f14ae28243
Merge pull request #163 from jsca-kwok/jk-days
...
Number of days algorithm
2021-08-22 14:21:08 -07:00
Vitor Oliveira
20a79f924b
Update number_of_days.rb
2021-08-22 14:20:55 -07:00
Aboobacker MK
f4d6346106
Fix the complexity memoisation check
...
keys.include? number is not cheap as it is search operation on array and it increases the time complexity. replaced it with `key?` method to fix memoisation check part on O(1) complexity
2021-08-11 09:38:43 +05:30
datta-agni
78ff8bdad8
RSA cryptographic algorithm implemented in Ruby. Small primes are used to geenrate p and q.
2021-08-09 19:41:43 +05:30
Kaíque Kandy Koga
db5a8181b6
Add Caesar
...
extra line
2021-07-25 16:21:30 -03:00
Vitor Oliveira
f7538d07b4
Merge pull request #161 from jsca-kwok/jk-isomorphic-strings
...
Isomorphic Strings Algorithm
2021-07-20 19:32:19 -07:00
Sahil Afrid Farookhi
1f36e635a6
Merge branch 'TheAlgorithms:master' into master
2021-07-18 12:54:08 +05:30
David Leal
0d04d07391
Add Discord badge in README.md
2021-07-18 00:03:43 -05:00
Jessica Kwok
e804e6814c
Add Date.parse solution
2021-07-08 14:57:00 -07:00
Jessica Kwok
d4b1efef5a
Added space complexity
2021-07-02 13:54:01 -07:00
Vitor Oliveira
eecebfe30a
Merge pull request #162 from jsca-kwok/jk-palindrome
...
Add almost palindrome algorithm
2021-07-02 12:53:59 -07:00
Vitor Oliveira
a0952eb7b2
add space complexity
2021-07-02 12:52:55 -07:00
Jessica Kwok
b40fe95c43
Extract split method from loop
2021-07-02 12:45:20 -07:00
Jessica Kwok
2375a7f97f
Merge branch 'jk-palindrome' of https://github.com/jsca-kwok/Ruby into jk-palindrome
2021-06-29 14:04:08 -07:00
Jessica Kwok
6c72cd24a1
Add two pointers approach
2021-06-29 14:00:08 -07:00
Sahil Afrid Farookhi
e52f6c4585
ohms law feature implementation
2021-06-27 22:24:18 +05:30
Sahil Afrid Farookhi
1b783c05c3
Merge branch 'TheAlgorithms:master' into master
2021-06-27 21:51:56 +05:30
Vitor Oliveira
f5c87a44d0
Merge pull request #158 from TheAlgorithms/pascal-triangle-ii-dd-approach
2021-06-25 19:09:16 -07:00
Vitor Oliveira
3ec899cc9c
Merge pull request #157 from TheAlgorithms/pascal-triangle-ii-math-approach
2021-06-25 19:08:54 -07:00
Jessica Kwok
66859e8491
Add palindrome challenge
2021-06-24 13:37:00 -07:00
Jessica Kwok
07c7bd1f27
Merge branch 'master' into jk-isomorphic-strings
2021-06-22 14:32:33 -07:00
Jessica Kwok
b2773bb773
Add hash solution
2021-06-22 14:31:04 -07:00
Jessica Kwok
3d0135b73a
Move challenge to hash_table folder and update directory
2021-06-21 16:56:49 -07:00
Jessica Kwok
47efd0124c
Merge branch 'master' into jk-max-69-number
2021-06-15 16:25:57 -07:00
Jessica Kwok
789f5fc03c
Add logical approach
2021-06-15 16:24:34 -07:00
Jessica Kwok
1ef5a9ab07
Add max 69 number challenge
2021-06-15 16:14:06 -07:00
Jessica Kwok
2e35433597
Add isomorphic strings challenge
2021-06-15 16:09:38 -07:00
Vitor Oliveira
6defd7eab5
add missing output
2021-06-08 11:42:17 -07:00
Vitor Oliveira
b4d5726791
add enter
2021-06-08 11:36:07 -07:00
Vitor Oliveira
08b2e6b547
minor changes
2021-06-08 11:31:15 -07:00
Vitor Oliveira
c7329e6bf4
add brute force approach
2021-06-08 11:30:17 -07:00
Vitor Oliveira
130e736aa6
minor changes
2021-06-08 11:30:17 -07:00
github-actions
e202d15e6b
updating DIRECTORY.md
2021-06-08 18:28:22 +00:00
Vitor Oliveira
a0af18e002
Add dynamic programming approach 2
2021-06-08 11:28:05 -07:00
Vitor Oliveira
c8b91b8222
Add dynamic programming approach 1
2021-06-08 11:27:59 -07:00
github-actions
2763a871fa
updating DIRECTORY.md
2021-06-08 18:25:23 +00:00
Vitor Oliveira
5f6036b6c6
Pascal triangle ii: math approach
2021-06-08 11:25:04 -07:00
Vitor Oliveira
17922dbc0d
fix directory.md
2021-06-07 19:39:25 -07:00
github-actions
aece3afeee
updating DIRECTORY.md
2021-06-08 02:39:00 +00:00
Vitor Oliveira
20367f2490
Merge pull request #155 from jsca-kwok/jk-common-characters
...
Add common characters algorithm
2021-06-07 19:38:45 -07:00
Vitor Oliveira
bf6d576453
Merge branch 'master' into jk-common-characters
2021-06-04 01:20:13 -07:00
Sahil Afrid Farookhi
cfb6bb9b70
Merge branch 'master' into master
2021-06-04 00:11:45 +05:30
Sahil Afrid Farookhi
d7b1bc0b73
3n plus 1 feature implementation
2021-06-04 00:09:43 +05:30
Jessica Kwok
99080bcc48
Add number of days challenge
2021-06-03 10:15:05 -07:00
Jessica Kwok
c01e4b5b0c
Update directory with solution in hash table section
2021-06-03 10:12:02 -07:00