Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gautham Velchuru
341_final
Commits
52b7d4cb
Commit
52b7d4cb
authored
Jun 05, 2018
by
Gautham Velchuru
Browse files
add remove_dupl
parent
e741674e
Changes
1
Hide whitespace changes
Inline
Side-by-side
practice_programs/remove_dupl.pl
0 → 100644
View file @
52b7d4cb
remove_dupl
([],[]).
remove_dupl
([
X
|
Xs
],[
X
|
Ys
])
:-
\
+
member
(
X
,
Xs
),
remove_dupl
(
Xs
,
Ys
).
remove_dupl
([
X
|
Xs
],
Ys
)
:-
member
(
X
,
Xs
),
remove_dupl
(
Xs
,
Ys
).
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment