lcsp 1.1.1 → 1.2.1
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 +4 -4
- data/LICENSE +1 -1
- data/README.md +135 -18
- data/bin/cli.rb +30 -2
- data/bin/lcsp +1 -0
- data/lib/lcsc/resolver.rb +45 -0
- data/lib/lcsc.rb +23 -0
- data/lib/lcsp/resolver.rb +3 -4
- data/lib/lcsp.rb +3 -3
- metadata +6 -4
- /data/lib/{lcsp → common}/cache.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2dd406499415daf45abcf93e8d29af8c35688224cc1b260c5e7ca892c68c55f
|
4
|
+
data.tar.gz: a545c498a3a2fab4efdd9b8b4e1ff9c3ac1a8b5729973491abf6c85d6012420f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 036a29fef2e949ba4bd87c0cf9d674f5214b347e73600616c256d79bcbb8f50579e234b16ffbcb97e48eefa691c258f1c61f4ab5d56749714e7364ec1d8f1c92
|
7
|
+
data.tar.gz: 5da7e15d3c63f19e72eacea1f798812085823442443564baf6574b4578233318a12a628485d1c8aaf8c480baf34ff30f629bd6693919f987cb98fbf36c563ddd
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,44 +1,96 @@
|
|
1
1
|
# lcsp
|
2
2
|
|
3
|
-
[](https://github.com/fartem/lcsp/actions?branch=master)
|
4
4
|
[](https://codebeat.co/projects/github-com-fartem-lcsp-master)
|
5
5
|
[](https://badge.fury.io/rb/lcsp)
|
6
6
|
[](https://badge.fury.io/rb/lcsp)
|
7
7
|
|
8
8
|
## About
|
9
9
|
|
10
|
-
A tool for showing solutions from LeetCode.
|
10
|
+
A tool for showing and counting solutions from LeetCode.
|
11
11
|
|
12
12
|
## How to use
|
13
13
|
|
14
14
|
### Installation
|
15
15
|
|
16
|
-
|
16
|
+
#### Download gem from RubyGems
|
17
17
|
|
18
|
-
|
18
|
+
```shell
|
19
|
+
$ gem i lcsp
|
20
|
+
```
|
21
|
+
|
22
|
+
#### As local installed gem
|
23
|
+
|
24
|
+
Build and install gem from sources:
|
25
|
+
|
26
|
+
```shell
|
27
|
+
$ gem build lcsp.gemspec
|
28
|
+
$ gem i lcsp
|
29
|
+
```
|
30
|
+
|
31
|
+
### Print solution
|
19
32
|
|
20
|
-
You need to provide 3 arguments for run `
|
33
|
+
You need to provide 3 arguments for run `print` command:
|
21
34
|
|
22
|
-
| Parameter
|
23
|
-
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
35
|
+
| Parameter | Description | Example |
|
36
|
+
| --------- | ----------------- | --------------- |
|
37
|
+
| `user` | GitHub user name | `fartem` |
|
38
|
+
| `repo` | Repository name | `leetcode-ruby` |
|
39
|
+
| `number` | Number of problem | `11` |
|
27
40
|
|
28
41
|
One of valid input variants be like:
|
29
42
|
|
30
43
|
```shell
|
31
|
-
$ lcsp fartem leetcode-ruby 11
|
44
|
+
$ lcsp print --user=fartem --repo=leetcode-ruby --number=11
|
45
|
+
```
|
46
|
+
|
47
|
+
### Count solutions
|
48
|
+
|
49
|
+
You need to provide 2 arguments for run `count` command:
|
50
|
+
|
51
|
+
| Parameter | Description | Example |
|
52
|
+
| --------- | ---------------- | --------------- |
|
53
|
+
| `user` | GitHub user name | `fartem` |
|
54
|
+
| `repo` | Repository name | `leetcode-ruby` |
|
55
|
+
|
56
|
+
One of valid input variants be like:
|
57
|
+
|
58
|
+
```shell
|
59
|
+
$ lcsp count --user=fartem --repo=leetcode-ruby
|
60
|
+
```
|
61
|
+
|
62
|
+
### Clean local cache
|
63
|
+
|
64
|
+
Just run next command from any folder:
|
65
|
+
|
66
|
+
```shell
|
67
|
+
$ lcsp clean
|
68
|
+
```
|
69
|
+
|
70
|
+
### Contacts
|
71
|
+
|
72
|
+
You can see actual author contacts by following command:
|
73
|
+
|
74
|
+
```shell
|
75
|
+
$ lcsp author
|
32
76
|
```
|
33
77
|
|
34
|
-
###
|
78
|
+
### Version
|
79
|
+
|
80
|
+
If you need to check installed version of `lcsp`, run from shell:
|
81
|
+
|
82
|
+
```shell
|
83
|
+
$ lcsp author
|
84
|
+
```
|
85
|
+
|
86
|
+
### How to write your own `LCSPFinder`
|
35
87
|
|
36
88
|
#### Read before start
|
37
89
|
|
38
|
-
`lcsp` works with custom
|
90
|
+
`lcsp` works with custom finders - classes that should placed in your project and that will perform
|
39
91
|
search locally.
|
40
92
|
|
41
|
-
You need to write
|
93
|
+
You need to write finder classes in Ruby because only this format accepting right now, but all work
|
42
94
|
around search and parse for your repository you can place in classes/scripts/files in any other programming language.
|
43
95
|
|
44
96
|
One of the correct and working example available
|
@@ -65,10 +117,6 @@ module LCSP
|
|
65
117
|
# @return {String}
|
66
118
|
def solution
|
67
119
|
end
|
68
|
-
|
69
|
-
# @param {String} path
|
70
|
-
# @param {String[]} dirs
|
71
|
-
def fill_directories(path, dirs) end
|
72
120
|
end
|
73
121
|
end
|
74
122
|
```
|
@@ -114,6 +162,75 @@ module LCSP
|
|
114
162
|
end
|
115
163
|
```
|
116
164
|
|
165
|
+
### How to write your own `LCSCCounter`
|
166
|
+
|
167
|
+
#### Read before start
|
168
|
+
|
169
|
+
`lcsc` works with custom counters - classes that should placed in your project and that will perform
|
170
|
+
count locally.
|
171
|
+
|
172
|
+
You need to write counter classes in Ruby because only this format accepting right now, but all work
|
173
|
+
around search and parse for your repository you can place in classes/scripts/files in any other programming language.
|
174
|
+
|
175
|
+
One of the correct and working example available
|
176
|
+
by [this link](https://github.com/fartem/leetcode-ruby/blob/master/lcsp/counter.rb).
|
177
|
+
|
178
|
+
#### Template class
|
179
|
+
|
180
|
+
`path` are default parameter that are presenting for every repository. It is a path to repository in cache.
|
181
|
+
|
182
|
+
```ruby
|
183
|
+
# frozen_string_literal: true
|
184
|
+
|
185
|
+
require 'find'
|
186
|
+
|
187
|
+
module LCSC
|
188
|
+
# Solutions counter.
|
189
|
+
class LCSCCounter
|
190
|
+
# @param {String} path
|
191
|
+
def initialize
|
192
|
+
@path = './'
|
193
|
+
end
|
194
|
+
|
195
|
+
# @return {Integer}
|
196
|
+
def count
|
197
|
+
dir_sub = "#{@path}/lib"
|
198
|
+
|
199
|
+
easy = find_for_dir("#{dir_sub}/easy")
|
200
|
+
medium = find_for_dir("#{dir_sub}/medium")
|
201
|
+
|
202
|
+
easy + medium
|
203
|
+
end
|
204
|
+
|
205
|
+
private
|
206
|
+
|
207
|
+
def find_for_dir(dir)
|
208
|
+
::Find.find(dir).count { |file| ::File.file?(file) }
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|
212
|
+
```
|
213
|
+
|
214
|
+
#### Reference class example
|
215
|
+
|
216
|
+
```ruby
|
217
|
+
# frozen_string_literal: true
|
218
|
+
|
219
|
+
module LCSC
|
220
|
+
# Solutions counter.
|
221
|
+
class LCSCFinder
|
222
|
+
# @param {String} path
|
223
|
+
def initialize(path)
|
224
|
+
@path = path
|
225
|
+
end
|
226
|
+
|
227
|
+
# @return {Integer}
|
228
|
+
def count
|
229
|
+
end
|
230
|
+
end
|
231
|
+
end
|
232
|
+
```
|
233
|
+
|
117
234
|
## Contributors
|
118
235
|
|
119
236
|
* [@fartem](https://github.com/fartem) as Artem Fomchenkov
|
data/bin/cli.rb
CHANGED
@@ -4,8 +4,6 @@ require 'dry/cli'
|
|
4
4
|
require 'fileutils'
|
5
5
|
require 'rubygems'
|
6
6
|
|
7
|
-
# frozen_string_literal: true
|
8
|
-
|
9
7
|
module CLI
|
10
8
|
# lcsp CLI
|
11
9
|
module Commands
|
@@ -53,6 +51,35 @@ module CLI
|
|
53
51
|
end
|
54
52
|
end
|
55
53
|
|
54
|
+
# This class represents a command for counting solutions.
|
55
|
+
# It inherits from Dry::CLI::Command and is registered under the 'count' alias.
|
56
|
+
class Count < ::Dry::CLI::Command
|
57
|
+
desc 'Counts solutions'
|
58
|
+
|
59
|
+
option :user,
|
60
|
+
default: '',
|
61
|
+
desc: 'GitHub user name'
|
62
|
+
|
63
|
+
option :repo,
|
64
|
+
default: '',
|
65
|
+
desc: 'GitHub repository with solutions'
|
66
|
+
|
67
|
+
# The main method of the command.
|
68
|
+
# It creates an instance of LCSC::LCSC and calls its start method with the provided options.
|
69
|
+
#
|
70
|
+
# @param options [Hash] The command-line options.
|
71
|
+
# @option options [String] :user The GitHub user name.
|
72
|
+
# @option options [String] :repo The GitHub repository with solutions.
|
73
|
+
#
|
74
|
+
# @return [void]
|
75
|
+
def call(options)
|
76
|
+
::LCSC::LCSC.new.start(
|
77
|
+
options[:user],
|
78
|
+
options[:repo]
|
79
|
+
)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
56
83
|
# This class represents a command for cleaning the local cache of LCSP.
|
57
84
|
# It inherits from Dry::CLI::Command and is registered under the 'clean' alias.
|
58
85
|
class Clean < ::Dry::CLI::Command
|
@@ -117,6 +144,7 @@ module CLI
|
|
117
144
|
end
|
118
145
|
|
119
146
|
register 'print', Print.new, aliases: ['p']
|
147
|
+
register 'count', Count.new, aliases: ['t']
|
120
148
|
register 'clean', Clean.new, aliases: ['c']
|
121
149
|
register 'version', Version.new, aliases: ['v']
|
122
150
|
register 'author', Author.new, aliases: ['a']
|
data/bin/lcsp
CHANGED
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative '../common/cache'
|
4
|
+
|
5
|
+
module LCSC
|
6
|
+
# LCSCResolver logic.
|
7
|
+
class LCSCResolver
|
8
|
+
# LCSCResolver is entry point for any LCSP request by user.
|
9
|
+
#
|
10
|
+
# @param user [String] The GitHub username of the user.
|
11
|
+
# @param repository [String] The name of the repository containing the LCSP problem.
|
12
|
+
def initialize(user, repository)
|
13
|
+
@user = user
|
14
|
+
@repository = repository
|
15
|
+
end
|
16
|
+
|
17
|
+
# Resolves the LCSC by creating an LCSPCache instance, locating the LCSCCounter file,
|
18
|
+
# requiring it, and then creating an LCSCCounter instance to find the solution.
|
19
|
+
#
|
20
|
+
# @return [String] The solution to the LCSP problem.
|
21
|
+
# @return [nil] If the LCSPFinder file is not found or the solution is not found.
|
22
|
+
def resolve
|
23
|
+
cache = ::LCSP::LCSPCache.new(@user, @repository)
|
24
|
+
finder_path = "#{cache.path}/lcsp/counter.rb"
|
25
|
+
|
26
|
+
unless ::File.exist?(finder_path)
|
27
|
+
puts('counter.rb not found in repository. Please, check config and try again.')
|
28
|
+
|
29
|
+
exit(1)
|
30
|
+
end
|
31
|
+
|
32
|
+
require_relative(finder_path)
|
33
|
+
|
34
|
+
count = ::LCSC::LCSCCounter.new(cache.path).count
|
35
|
+
|
36
|
+
if count.nil?
|
37
|
+
puts('Failed to count solutions. Please, check your input and try again.')
|
38
|
+
|
39
|
+
exit(2)
|
40
|
+
end
|
41
|
+
|
42
|
+
count
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
data/lib/lcsc.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rouge'
|
4
|
+
require 'rouge/cli'
|
5
|
+
|
6
|
+
require_relative './lcsc/resolver'
|
7
|
+
|
8
|
+
module LCSC
|
9
|
+
# This class represents the main functionality of the LCSC (LeetCode Solution Counter) tool.
|
10
|
+
class LCSC
|
11
|
+
# Starts the LCSC tool.
|
12
|
+
#
|
13
|
+
# @param user [String] The GitHub username of the repository owner.
|
14
|
+
# @param repository [String] The name of the GitHub repository.
|
15
|
+
#
|
16
|
+
# @return [Integer] The exit status of the Rouge CLI tool after processing the resolved LCSP.
|
17
|
+
def start(user, repository)
|
18
|
+
output = ::LCSC::LCSCResolver.new(user, repository).resolve
|
19
|
+
|
20
|
+
::Rouge::CLI.parse([output]).run
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
data/lib/lcsp/resolver.rb
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative '
|
3
|
+
require_relative '../common/cache'
|
4
4
|
|
5
5
|
module LCSP
|
6
|
-
# LCSPResolver logic
|
6
|
+
# LCSPResolver logic.
|
7
7
|
class LCSPResolver
|
8
|
-
# LCSPResolver is
|
9
|
-
# for a given user, repository, and problem number.
|
8
|
+
# LCSPResolver is entry point for any LCSP request by user.
|
10
9
|
#
|
11
10
|
# @param user [String] The GitHub username of the user.
|
12
11
|
# @param repository [String] The name of the repository containing the LCSP problem.
|
data/lib/lcsp.rb
CHANGED
@@ -6,10 +6,9 @@ require 'rouge/cli'
|
|
6
6
|
require_relative './lcsp/resolver'
|
7
7
|
|
8
8
|
module LCSP
|
9
|
-
# This class represents the main functionality of the LCSP (
|
9
|
+
# This class represents the main functionality of the LCSP (LeetCode Solution Printer) tool.
|
10
10
|
class LCSP
|
11
|
-
# Starts the LCSP tool
|
12
|
-
# and pull request number.
|
11
|
+
# Starts the LCSP tool.
|
13
12
|
#
|
14
13
|
# @param user [String] The GitHub username of the repository owner.
|
15
14
|
# @param repository [String] The name of the GitHub repository.
|
@@ -18,6 +17,7 @@ module LCSP
|
|
18
17
|
# @return [Integer] The exit status of the Rouge CLI tool after processing the resolved LCSP.
|
19
18
|
def start(user, repository, number)
|
20
19
|
output = ::LCSP::LCSPResolver.new(user, repository, number).resolve
|
20
|
+
|
21
21
|
::Rouge::CLI.parse([output]).run
|
22
22
|
end
|
23
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lcsp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Artem Fomchenkov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-cli
|
@@ -134,8 +134,10 @@ files:
|
|
134
134
|
- README.md
|
135
135
|
- bin/cli.rb
|
136
136
|
- bin/lcsp
|
137
|
+
- lib/common/cache.rb
|
138
|
+
- lib/lcsc.rb
|
139
|
+
- lib/lcsc/resolver.rb
|
137
140
|
- lib/lcsp.rb
|
138
|
-
- lib/lcsp/cache.rb
|
139
141
|
- lib/lcsp/resolver.rb
|
140
142
|
homepage: https://github.com/fartem/lcsp
|
141
143
|
licenses:
|
@@ -157,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
159
|
- !ruby/object:Gem::Version
|
158
160
|
version: '0'
|
159
161
|
requirements: []
|
160
|
-
rubygems_version: 3.
|
162
|
+
rubygems_version: 3.5.23
|
161
163
|
signing_key:
|
162
164
|
specification_version: 4
|
163
165
|
summary: A tool for showing solutions from LeetCode
|
File without changes
|