3545 Commits

Author SHA1 Message Date
ecdfd99c04 Merge pull request #229 from christianbender/master
XOR cipher algorithm
2017-12-22 18:24:43 +05:30
ad265b9b61 XOR cipher algorithm
a class with simple cipher algorithm that uses bitwise XOR
2017-12-21 19:08:58 +01:00
8bf6952bac Merge pull request #228 from MindTraper/master
Three methods to find the roots of non-linear functions
2017-12-18 10:48:49 +05:30
e0e7bc647f Merge pull request #1 from MindTraper/MindTraper-patch-1
Bisection,Newton,Intersection
2017-12-17 22:04:05 +02:00
24bad2e273 Add files via upload
There are three methods that find approximately the roots of a non-linear function
2017-12-17 22:02:36 +02:00
a251e9fbe7 Merge pull request #221 from cclauss/patch-4
chunk() --> chunker() to resolve an undefined name
2017-12-14 09:56:53 +05:30
14d9e720cc Merge pull request #222 from cclauss/patch-5
Typo: dfference --> difference (I added an i)
2017-12-14 09:54:59 +05:30
2ed1bad747 Merge branch 'master' into modernize-python2-code 2017-12-13 16:32:28 +01:00
2dcbbd4325 Merge pull request #215 from erdenezul/dp_abbreviation
add abbrevation solution to dp
2017-12-13 13:26:29 +05:30
ac2b2d0735 Merge pull request #227 from christianbender/master
Refactoring solv1.py
2017-12-13 13:05:45 +05:30
05240404c7 Merge pull request #226 from PiyushPawar17/Mod-Expo
Added Modular Exponential
2017-12-13 13:05:26 +05:30
9e3562f8c8 Merge pull request #223 from RiptideBo/master
add a framework of bp neural network and delete the old one
2017-12-13 13:04:41 +05:30
a14ea99143 Merge pull request #225 from Richienb/patch-1
Project Euler - Easier Solution To Problem 7
2017-12-11 19:52:45 +05:30
59d7da376e Merge pull request #224 from Sayan97/master
Merge pull request #1 from TheAlgorithms/master
2017-12-11 19:52:33 +05:30
9168237b4e Merge pull request #217 from cclauss/patch-2
import numpy as np
2017-12-11 19:51:25 +05:30
a81084c586 Refactoring solv1.py
Little embellishment of the code.
I put some comments and put readable identifiers. 
I documented the code.
2017-12-03 15:39:13 +01:00
0330d8896b Added Modular Exponential 2017-12-01 18:57:53 +05:30
25104f34e0 Merge pull request #216 from nautiyaldeepak/master
ftp client server connection
2017-11-29 19:00:21 +05:30
f069c20715 Easier Solution To Problem 7 2017-11-29 21:02:02 +13:00
9714aa31bc Merge pull request #213 from Thejus-Paul/master
Problem 16 Added
2017-11-28 17:10:11 +05:30
777d947325 Merge pull request #210 from himangSharatun/master
add mean bias deviation in scoring functions
2017-11-28 17:07:07 +05:30
7bb26e9b2a Merge pull request #211 from christianbender/master
primelib
2017-11-28 17:06:57 +05:30
f0addfb2f3 Merge pull request #158 from Sayan97/patch-3
Update minimum_partition.py
2017-11-28 17:06:16 +05:30
491439ae50 Merge pull request #129 from Balance-Breaker/master
Fixed heading's formatting errors
2017-11-28 16:58:04 +05:30
d7a94a1135 add a framework of bp neural network and delete the old one 2017-11-28 14:23:59 +08:00
033744155c Added Solution
Added Solution for Problem 20
2017-11-27 10:44:32 +05:30
ad6b0f1c6b Modernize Python 2 code to get ready for Python 3 2017-11-25 12:46:31 +01:00
e31c780d94 Modernize Python 2 code to get ready for Python 3 2017-11-25 12:41:55 +01:00
c71471dc2f Typo: dfference --> difference (I added an i) 2017-11-25 12:22:35 +01:00
aed9cb16ec chunk() --> chuncker() to resolve undefined name
flake8 results:
```
./ciphers/playfair_cipher.py:88:25: F821 undefined name 'chunk'
    for char1, char2 in chunk(ciphertext, 2):
                        ^
```
2017-11-25 12:15:41 +01:00
4e06949072 Modernize Python 2 code to get ready for Python 3 2017-11-25 10:23:50 +01:00
ba759d9573 Add automated flake8 testing of pull requests
The owner of the this repo would need to go to https://travis-ci.org/profile and flip the repository switch __on__ to enable free automated flake8 testing of each pull request.  Flake8 will find bugs and code smells.
2017-11-25 00:10:39 +01:00
bc53e2e618 import numpy as np
Lines like 19, 20, 29, 30, etc. use np but it is never defined.
2017-11-25 00:06:39 +01:00
f920e2a809 ftp client server connection 2017-11-21 22:04:04 +05:30
69f009e0a5 add abbrevation solution to dp 2017-11-21 15:28:55 +08:00
31ebde6e17 Problem 29
On this solution I used a 'set' data structure, since more efficient.
2017-11-19 22:03:30 +01:00
01ae338b75 Delete main.py 2017-11-19 22:02:06 +01:00
abe0f29b8b Problem 29 -- Project Euler
On this solution I used a 'set' data structure, since more efficient.
2017-11-19 22:01:31 +01:00
c787a22d93 Problem 16 Added
Solution to the Problem 16  has been added.
2017-11-20 01:34:21 +05:30
01f48e708d Correction: File solv01.py
Identifier 'max' changed in 'maxNumber' , since 'max' is a function.
2017-11-19 15:13:50 +01:00
8d9da8f623 Correction: File solv01.py
I have remove some semicolons.
2017-11-19 15:10:09 +01:00
a5c954ff6e Correction: File solv3.py
I have remove some semicolons. line 11, 12 and 42
2017-11-19 15:06:42 +01:00
567f2adab8 Correction: Remove semicolons
I have remove the semicolons in line 8 and line 12
2017-11-19 14:54:30 +01:00
52d160e648 Merge pull request #1 from christianbender/christianbender-primelib
primelib
2017-11-18 18:35:54 +01:00
50d39561e4 primelib
This python library contains some useful functions to deal with
prime numbers and whole numbers. The ideas came by the problems sets from ProjectEuler.
2017-11-18 16:29:34 +01:00
80bdfbb9f9 add mean bias deviation in scoring functions 2017-11-18 10:34:07 +07:00
a03b2eafc0 Merge pull request #204 from erdenezul/even_tree_problem
add even tree problem
2017-11-15 19:10:05 +05:30
990b367bce Merge pull request #205 from Thejus-Paul/patch-1
Problem Euler Solution Added
2017-11-15 19:09:51 +05:30
227e5a1305 Merge pull request #206 from Thejus-Paul/master
Added Question 9
2017-11-15 19:09:38 +05:30
b2beb8db50 Merge pull request #209 from DeepakNautiyal987/master
File Transfer Protocols
2017-11-15 19:09:08 +05:30