Coder Social home page Coder Social logo

prolog-ai's Introduction

Hi there ๐Ÿ‘‹

I'm currently:

  • ๐Ÿง  Research Fellow and PhD Student at Marche Polytechnic University (UnivPM)
  • ๐Ÿ›ฐ๏ธ Research Associate at National Institute for Nuclear Physics (INFN)
  • ๐Ÿ’Ž Co-founder and CTO of NEXIST (nexist.it)


prolog-ai's People

Contributors

biuni avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

prolog-ai's Issues

Aggiunta del predicato che calcola la media degli elementi di una lista

%% //////////////////////////////////////////////////////////////////////////

% --------------------
% ** MEDIA DI UNA LISTA **
% --------------------
% Calcola la media di una lista
%
% INPUT: avg([1,3,5],A).
% OUTPUT: A = 3.
%

average([],0).
average( List, Avg ):-
sum( List, Sum ),
length( List, Length),
Avg is Sum / Length.

sum([],0).
sum([H|L],C):-
sum(L,C0),
C is C0 + H.

Aggiunta del predicato di conversione di una lista di interi in un numero

%% //////////////////////////////////////////////////////////////////////////

% --------------------
% ** CONVERSIONE DI UNA LISTA IN UN NUMERO **
% --------------------
% Converte una lista di interi in un numero
%
% INPUT: l_to_n([2,5,8,7,5,1],N).
% OUTPUT: N = 258751.
%

l_to_n(L,N) :-
l_to_n(L,0,N).

l_to_n([H|T],A,N) :-
!,
B is A*10+H,
l_to_n(T,B,N).
l_to_n(_,N,N).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.