From cf32f0112ce0a42f7c200d71eb38f9e881825d09 Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-google@users.noreply.github.com> Date: Sun, 30 Jul 2023 15:57:34 -0700 Subject: [PATCH] Update climbing_stairs.py --- math_logic_dp/climbing_stairs.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/math_logic_dp/climbing_stairs.py b/math_logic_dp/climbing_stairs.py index 6a8a76c..30c2f18 100644 --- a/math_logic_dp/climbing_stairs.py +++ b/math_logic_dp/climbing_stairs.py @@ -1,3 +1,7 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# author: bt3gl + ''' You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps.