-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: change directory structure to idiomatic go directory structure (#…
…333) * fix: restructured directory structure * fix: minor name changes and updated README.md in linkedlist package * fix: cleanup of commented out code * fix: trying to fix alert caused by the password generator in 'other' directory * fix: golintci errors * fix: removed the montecarlopi algorithm which was implemented in a non testable way and was commented out * fix: restructured search math and strings subpackage * fix: removed commented out files Co-authored-by: Andrii Siriak <[email protected]>
- Loading branch information
1 parent
5ac0bd5
commit 59b98b8
Showing
94 changed files
with
822 additions
and
1,526 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
..._key_exchange/diffiehellmankeyexchange.go → ...diffiehellman/diffiehellmankeyexchange.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...exchange/diffiehellmankeyexchange_test.go → ...ehellman/diffiehellmankeyexchange_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package diffie_hellman_key_exchange | ||
package diffiehellman | ||
|
||
import ( | ||
"crypto/rand" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package xor_cipher | ||
package xor | ||
|
||
import ( | ||
"fmt" | ||
|
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
168 changes: 0 additions & 168 deletions
168
data_structures/linkedlist/doubly_linkedlist/doublylinkedlist.go
This file was deleted.
Oops, something went wrong.
104 changes: 0 additions & 104 deletions
104
data_structures/linkedlist/singly_linkedlist/singly_linkedlist2.go
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
dynamic_programming/binomialcoefficient.go → dynamic/binomialcoefficient.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package dynamic_programming | ||
package dynamic | ||
|
||
// func main() { | ||
// myArrayOfK := [4]int{5, 6, 7, 8} | ||
|
Oops, something went wrong.