Skip to main content
Commonmark migration
Source Link

#05AB1E, 3 bytes

05AB1E, 3 bytes

Code:

ÅFg

Explanation:

ÅF   # Generate all Fibonacci numbers <= input.
  g  # Get the length of this list.

Uses the CP-1252 encoding. Try it online!.

#05AB1E, 3 bytes

Code:

ÅFg

Explanation:

ÅF   # Generate all Fibonacci numbers <= input.
  g  # Get the length of this list.

Uses the CP-1252 encoding. Try it online!.

05AB1E, 3 bytes

Code:

ÅFg

Explanation:

ÅF   # Generate all Fibonacci numbers <= input.
  g  # Get the length of this list.

Uses the CP-1252 encoding. Try it online!.

Source Link
Adnan
  • 44.8k
  • 6
  • 84
  • 248

#05AB1E, 3 bytes

Code:

ÅFg

Explanation:

ÅF   # Generate all Fibonacci numbers <= input.
  g  # Get the length of this list.

Uses the CP-1252 encoding. Try it online!.