From 24b38f0d5b0187cbf2ff0cba219a22c655731023 Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-google@users.noreply.github.com> Date: Sun, 30 Jul 2023 15:53:08 -0700 Subject: [PATCH] Update sum_2_numbers_with_bs.py --- trees_and_graphs/sum_2_numbers_with_bs.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/trees_and_graphs/sum_2_numbers_with_bs.py b/trees_and_graphs/sum_2_numbers_with_bs.py index c45c5f4..c18e38b 100644 --- a/trees_and_graphs/sum_2_numbers_with_bs.py +++ b/trees_and_graphs/sum_2_numbers_with_bs.py @@ -1,8 +1,10 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# author: bt3gl + # given a collection of numbers, find the pair # of numbers that sum to a given number - - def bs(array, desired_num): start = 0