From 805e80144d8f6f16fceefc945c4dc4305ce49b4b Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-google@users.noreply.github.com> Date: Sun, 30 Jul 2023 15:57:08 -0700 Subject: [PATCH] Update sum_with_bitwise.py --- bit_manipulation/sum_with_bitwise.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bit_manipulation/sum_with_bitwise.py b/bit_manipulation/sum_with_bitwise.py index 282fe8b..cb0b004 100644 --- a/bit_manipulation/sum_with_bitwise.py +++ b/bit_manipulation/sum_with_bitwise.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# author: bt3gl + + def get_sum(self, a: int, b: int) -> int: if a == -b: