how to replace the first and last occurrences of number with other in prolog
up vote
0
down vote
favorite
repf(B,A,[A|Y],[B|Y]):-repf(B,A,Y,L),L=[B].
repf(B,A,[X|Y],L):- repf(B,A,Y,L1), L=[X|L1].
repf(B,A,[A],[B]).
How to make this code replace the first and last occurrence of a specific value with another?
prolog
New contributor
add a comment |
up vote
0
down vote
favorite
repf(B,A,[A|Y],[B|Y]):-repf(B,A,Y,L),L=[B].
repf(B,A,[X|Y],L):- repf(B,A,Y,L1), L=[X|L1].
repf(B,A,[A],[B]).
How to make this code replace the first and last occurrence of a specific value with another?
prolog
New contributor
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
repf(B,A,[A|Y],[B|Y]):-repf(B,A,Y,L),L=[B].
repf(B,A,[X|Y],L):- repf(B,A,Y,L1), L=[X|L1].
repf(B,A,[A],[B]).
How to make this code replace the first and last occurrence of a specific value with another?
prolog
New contributor
repf(B,A,[A|Y],[B|Y]):-repf(B,A,Y,L),L=[B].
repf(B,A,[X|Y],L):- repf(B,A,Y,L1), L=[X|L1].
repf(B,A,[A],[B]).
How to make this code replace the first and last occurrence of a specific value with another?
prolog
prolog
New contributor
New contributor
edited Nov 11 at 12:34
false
10.9k769140
10.9k769140
New contributor
asked Nov 10 at 12:34
Rama
1
1
New contributor
New contributor
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Rama is a new contributor. Be nice, and check out our Code of Conduct.
draft saved
draft discarded
Rama is a new contributor. Be nice, and check out our Code of Conduct.
Rama is a new contributor. Be nice, and check out our Code of Conduct.
Rama is a new contributor. Be nice, and check out our Code of Conduct.
draft saved
draft discarded
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239002%2fhow-to-replace-the-first-and-last-occurrences-of-number-with-other-in-prolog%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown