<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Programming Tutorials on Don Figuerres</title><link>https://donfiguerres.com/posts/programming-tutorials/</link><description>Recent content in Programming Tutorials on Don Figuerres</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Tue, 01 Jun 2021 02:57:52 +0800</lastBuildDate><atom:link href="https://donfiguerres.com/posts/programming-tutorials/index.xml" rel="self" type="application/rss+xml"/><item><title>Factorial</title><link>https://donfiguerres.com/posts/programming-tutorials/factorial/</link><pubDate>Tue, 01 Jun 2021 02:57:52 +0800</pubDate><guid>https://donfiguerres.com/posts/programming-tutorials/factorial/</guid><description>&lt;p&gt;Factorial is the product of all positive integers less than or equal to a given
positive integer and denoted by that integer and an exclamation point.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;n! = n * (n-1) * (n-2) * (n-3) ... 3 * 2 * 1&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;For example&lt;/p&gt;
&lt;p&gt;&lt;code&gt;5! = 5 * 4 * 3 * 2 * 1 = 120&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Just like the Fibonacci sequence, this is one of the basic forms of exercise
used in programming and is commonly used to introduce recursion. I have written
here both iterative and recursive implementations.&lt;/p&gt;</description></item><item><title>Fibonacci Sequence</title><link>https://donfiguerres.com/posts/programming-tutorials/fibonacci-sequence/</link><pubDate>Tue, 01 Jun 2021 00:12:25 +0800</pubDate><guid>https://donfiguerres.com/posts/programming-tutorials/fibonacci-sequence/</guid><description>&lt;p&gt;The Fibonacci sequence is a series of numbers where a number is the addition
of the last two numbers. This is one of the basic forms of exercise used in
programming and is almost always present in a programming exam. Therefore,
learning how to print the Fibonacci sequence is essential to anyone learning
programming or a new programming language.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;0 1 1 2 3 5 8 13 21 34 55 89 144 233 377&lt;/code&gt;&lt;/p&gt;</description></item></channel></rss>