From f56924ed341c0043647b5744b48dcb7391aa0c3d Mon Sep 17 00:00:00 2001 From: Nada Saad Date: Sun, 12 Jan 2025 22:49:36 +0400 Subject: [PATCH] add 2 lines infront of my filse --- solutions/fizz_buzz.py | 2 +- solutions/reverse_string.py | 2 ++ solutions/tests/test_fizz_buzz.py | 2 ++ solutions/tests/test_reverse_string.py | 2 ++ 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/solutions/fizz_buzz.py b/solutions/fizz_buzz.py index 490136bc5..f2a93759e 100644 --- a/solutions/fizz_buzz.py +++ b/solutions/fizz_buzz.py @@ -9,7 +9,7 @@ - 'FizzBuzz' for numbers divisible by both 3 and 5. - The number itself as a string for all other cases. - +author : @nada-saad635 """ diff --git a/solutions/reverse_string.py b/solutions/reverse_string.py index 22dc1be43..f5680a2f7 100644 --- a/solutions/reverse_string.py +++ b/solutions/reverse_string.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- """ This module provides a utility function to reverse strings. diff --git a/solutions/tests/test_fizz_buzz.py b/solutions/tests/test_fizz_buzz.py index 35ce52ced..63819f594 100644 --- a/solutions/tests/test_fizz_buzz.py +++ b/solutions/tests/test_fizz_buzz.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- import unittest from solutions.fizz_buzz import fizz_buzz diff --git a/solutions/tests/test_reverse_string.py b/solutions/tests/test_reverse_string.py index 728867b77..4f377025f 100644 --- a/solutions/tests/test_reverse_string.py +++ b/solutions/tests/test_reverse_string.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- """ Unit tests for the reverse_string function.