Tag

fibonacci

0 views collected around this technical thread.

Raymond Ops
Raymond Ops
Apr 24, 2025 · Fundamentals

Master Recursion: Classic Python Examples and Core Concepts

This article introduces recursion, explains its definition and key characteristics, and demonstrates classic Python examples such as factorial calculation, Fibonacci sequence generation, and binary search, helping readers grasp how recursion simplifies complex problems compared to iterative loops.

AlgorithmPythonbinary search
0 likes · 8 min read
Master Recursion: Classic Python Examples and Core Concepts
DevOps
DevOps
Nov 19, 2020 · R&D Management

Why Use Story Points Instead of Time and How to Estimate Them with the Fibonacci Sequence

This article explains why agile teams prefer story points over time for effort estimation, how the Fibonacci sequence (and its modified form) aligns with human perception of differences, the role of planning poker and the Delphi method in reducing bias, and practical steps for establishing baseline stories and estimating story points.

Delphi methodPlanning PokerR&D management
0 likes · 18 min read
Why Use Story Points Instead of Time and How to Estimate Them with the Fibonacci Sequence
php中文网 Courses
php中文网 Courses
Nov 4, 2020 · Fundamentals

Various Methods to Compute the Nth Fibonacci Number in PHP

This article introduces the Fibonacci sequence, explains its definition, and presents six PHP implementations—including naive recursion, memoized recursion, bottom‑up iteration, iterative loop, closed‑form formula, and a lookup table—detailing their logic and performance considerations.

Algorithmfibonacciiteration
0 likes · 6 min read
Various Methods to Compute the Nth Fibonacci Number in PHP
Python Programming Learning Circle
Python Programming Learning Circle
Jan 15, 2020 · Fundamentals

How to Sort Three Numbers and Generate Fibonacci Sequences in Python

This article demonstrates two Python examples: sorting three input integers in ascending order using simple comparisons and swaps, and generating Fibonacci numbers through iterative, recursive, and list‑building methods, complete with code snippets and sample outputs.

AlgorithmsBeginnerPython
0 likes · 4 min read
How to Sort Three Numbers and Generate Fibonacci Sequences in Python
Youzan Coder
Youzan Coder
Nov 15, 2019 · Fundamentals

Functions as Data Transformations: Recursion, Tail Calls, and Efficient Exponentiation & Fibonacci Implementations

The article treats functions as pure data‑to‑data mappings and demonstrates how common mathematical operations such as factorial, exponentiation, and Fibonacci can be expressed in TypeScript/JavaScript using recursive, tail‑recursive, iterative, and logarithmic‑time algorithms that illustrate functional transformation techniques and efficient algorithm design.

AlgorithmFunctional ProgrammingTypeScript
0 likes · 8 min read
Functions as Data Transformations: Recursion, Tail Calls, and Efficient Exponentiation & Fibonacci Implementations