Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
12
Task/Modular-arithmetic/Prolog/modular-arithmetic.pro
Normal file
12
Task/Modular-arithmetic/Prolog/modular-arithmetic.pro
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
:- use_module(library(lambda)).
|
||||
|
||||
congruence(Congruence, In, Fun, Out) :-
|
||||
maplist(Congruence +\X^Y^(Y is X mod Congruence), In, In1),
|
||||
call(Fun, In1, Out1),
|
||||
maplist(Congruence +\X^Y^(Y is X mod Congruence), Out1, Out).
|
||||
|
||||
fun_1([X], [Y]) :-
|
||||
Y is X^100 + X + 1.
|
||||
|
||||
fun_2(L, [R]) :-
|
||||
sum_list(L, R).
|
||||
Loading…
Add table
Add a link
Reference in a new issue