rbutils 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YmVmYmZkNjEwODUxNjE2ZTQwYWIzYTAyN2Q2MzkzYjcwNjk2YWViZA==
4
+ N2YxZWFmOTE4YmM0NDM2MTRjNTgxYTlmZDkyMDI5ZTVhNGNiYjIzYw==
5
5
  data.tar.gz: !binary |-
6
- OTBiZTYyYzE5YjBiZmNhNjFmOTBiNGJhMzlkMDAxODYxMDYxNGJkMA==
6
+ MmVmMDFiZDAxN2YwNDFhZGM0ZGFlNThmNjgxYzM5YmRmYmJiZDE3MA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MmNiYTVmNGNiMjRjNGY4NjlmMjFmYmM2YWNhN2M1ODlhNDVkY2UyN2I4NDg5
10
- Y2RlMTQ3NTY1YWYwNmUzODNiMDYzODk3MjYyYTlhZjQ5ZDVjYzYxYmY1NDhh
11
- Zjc4NWE3Y2MzYjU3YzNhNTFkYzYwZTliY2Y2NmU1YmRmY2RmMjk=
9
+ YTUxOWRjMWJkMGQzZjc2ZTk5ZWUxOGNkYzBkYjFmOWNjZDg2YWY1NDI5NDg5
10
+ NjJiMGUwYzEwN2RlMzIxNGNiMDNkZjE1NDcyOGUwYjI1ZGJjNTA1OTAwMTlm
11
+ ZjYyOTRkNjhkZDg2NzNiOGU0ZDQwZTNjOGY5Zjc3MGQ2MWUxODg=
12
12
  data.tar.gz: !binary |-
13
- ZjgxMjYyNjViM2Q1MDhhOWYyNzBjYTY3Y2JkMWM1YzZkNzYyYWYwNWRkNWFj
14
- NjU3NzFkODliY2RjMTE2NGRiN2I4ZWVhZGUyOTRmMzBlZjEzOTkxYWE0MmRk
15
- YTc2ZDUzNjgzOGQ4ZDU5NmI4NzZmYjE0NjI5MjBjMjhhZDMzNTY=
13
+ ZjhhMTFlYzA1YjNlZjdkYmNiYzY0MjYxMTU5OTRlZjE1YjAxMWRkNjY2NzQz
14
+ YTJmMjczMzViZjM4YzJhYjQ3NDJiM2JlYWFmNDUxYjY5ZTQxYTFiNDc2ZTRm
15
+ M2Q4YjZlMjA4OTFkODdmNmQyMTY2NGRjNWRjMzBkMjA4ZjFiYWQ=
@@ -1,4 +1,4 @@
1
- require_relative 'Graph'
1
+ require_relative 'graph'
2
2
 
3
3
  class BFS < Graph
4
4
  def initialize(graph, source)
@@ -1,4 +1,4 @@
1
- require_relative 'Graph'
1
+ require_relative 'graph'
2
2
 
3
3
  class DFS < Graph
4
4
  def initialize(graph, source)
@@ -20,10 +20,11 @@ def quicksort(array, l, r)
20
20
  i += 1
21
21
  end
22
22
  end
23
-
23
+
24
24
  array[l], array[i-1] = array[i-1], array[l]
25
25
  array = quicksort(array, l, i-1)
26
26
  array = quicksort(array, i, r)
27
27
  return array
28
28
  end
29
+
29
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbutils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - manan
@@ -10,7 +10,8 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2014-06-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: ! 'Utilities for enhanced functionality. Source is at https://github.com/mananshah99/rbutils. '
13
+ description: ! 'Utilities for enhanced functionality. Includes Graph, Sorting, Parsing,
14
+ and a Neural Network implemenation. Source is at https://github.com/mananshah99/rbutils. '
14
15
  email: manan.shah.777@gmail.com
15
16
  executables: []
16
17
  extensions: []