Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit59b98b8

Browse files
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 filesCo-authored-by: Andrii Siriak <siryaka@gmail.com>
1 parent5ac0bd5 commit59b98b8

File tree

94 files changed

+822
-1526
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+822
-1526
lines changed

ciphers/diffie_hellman_key_exchange/diffiehellmankeyexchange.go renamed to ciphers/diffiehellman/diffiehellmankeyexchange.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Packagediffie_hellman_key_exchange implements Deffie Hellman Key Exchange Algorithm
1+
// Packagediffiehellman implements Deffie Hellman Key Exchange Algorithm
22
// for more information watch : https://www.youtube.com/watch?v=NmM9HA2MQGI
3-
packagediffie_hellman_key_exchange
3+
packagediffiehellman
44

55
const (
66
generator=3

ciphers/diffie_hellman_key_exchange/diffiehellmankeyexchange_test.go renamed to ciphers/diffiehellman/diffiehellmankeyexchange_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
packagediffie_hellman_key_exchange
1+
packagediffiehellman
22

33
import (
44
"crypto/rand"

‎ciphers/xor/xor.go‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Packagexor_cipher is an encryption algorithm that operates the exclusive disjunction(XOR)
1+
// Packagexor is an encryption algorithm that operates the exclusive disjunction(XOR)
22
// ref: https://en.wikipedia.org/wiki/XOR_cipher
3-
packagexor_cipher
3+
packagexor
44

55
// Encrypt encrypts with Xor encryption after converting each character to byte
66
// The returned value might not be readable because there is no guarantee

‎ciphers/xor/xor_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
packagexor_cipher
1+
packagexor
22

33
import (
44
"fmt"
File renamed without changes.
File renamed without changes.

‎data_structures/binary_tree/binarysearchtree.go‎

Lines changed: 0 additions & 37 deletions
This file was deleted.

‎data_structures/binary_tree/binarytree.go‎

Lines changed: 0 additions & 38 deletions
This file was deleted.

‎data_structures/linkedlist/doubly_linkedlist/doublylinkedlist.go‎

Lines changed: 0 additions & 168 deletions
This file was deleted.

‎data_structures/linkedlist/singly_linkedlist/singly_linkedlist2.go‎

Lines changed: 0 additions & 104 deletions
This file was deleted.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp