Royal-lobster / acmucev-comments

2 stars 0 forks source link

blog/tools-and-techniques-in-artificial-intelligence #6

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Tools and Techniques in Artificial Intelligence

Artificial intelligence (AI) is intelligence demonstrated by machines, as opposed to natural intelligence displayed by animals including humans. Leading AI textbooks define the field as the study of "intelligent agents": any system that perceives its environment and takes actions that maximize its chance of achieving its goals.

https://acmucev.vercel.app/blog/tools-and-techniques-in-artificial-intelligence

Royal-lobster commented 2 years ago

Fibonacci sequence

the beginning of AI

<script>
    let n = 9;
    function fib(n) {
    if (n <= 1)
        return n;
    return fib(n-1) + fib(n-2);
}
    document.write(fib(n));
</script>
Royal-lobster commented 2 years ago

Awesome ! 👌