FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
javascripting-vi/compare-solution.js at master · nodejs-tutorials/javascripting-vi · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nodejs-tutorials
/
javascripting-vi
Public
forked from
ngnguyen1/javascripting
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
javascripting-vi
/
compare-solution.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
61 lines (42 loc) · 1.06 KB
Breadcrumbs
javascripting-vi
/
compare-solution.js
Copy path
File metadata and controls
61 lines (42 loc) · 1.06 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require
(
"colors"
)
;
var
path
=
require
(
"path"
)
;
var
diff
=
require
(
"diff"
)
;
var
run
=
require
(
path
.
join
(
__dirname
,
"run-solution"
)
)
;
module
.
exports
=
function
(
solution
,
attempt
,
cb
)
{
run
(
solution
,
function
(
err
,
solutionResult
)
{
if
(
err
)
{
console
.
error
(
err
)
;
return
cb
(
false
)
;
}
run
(
attempt
,
function
(
err
,
attemptResult
)
{
if
(
err
)
{
if
(
err
.
code
!==
8
)
{
console
.
error
(
err
)
;
}
return
cb
(
false
)
;
}
if
(
solutionResult
===
attemptResult
)
{
return
cb
(
true
)
;
}
cb
(
false
,
{
solution
:
solutionResult
,
attempt
:
attemptResult
,
diff
:
generateDiff
(
solutionResult
,
attemptResult
)
}
)
;
}
)
;
}
)
;
}
function
generateDiff
(
solution
,
attempt
)
{
var
parts
=
diff
.
diffChars
(
solution
,
attempt
)
;
var
result
=
""
;
parts
.
forEach
(
function
(
part
)
{
if
(
part
.
added
)
{
result
+=
part
.
value
[
"bgRed"
]
;
}
else
if
(
part
.
removed
)
{
result
+=
part
.
value
[
"bgGreen"
]
;
}
else
{
result
+=
part
.
value
;
}
}
)
;
return
result
;
}
Back
|
FazBrowse Home
|
New Git URL