diff --git a/arrays_and_strings/is_isomorphic.py b/arrays_and_strings/is_isomorphic.py index badd2ab..c5fd564 100644 --- a/arrays_and_strings/is_isomorphic.py +++ b/arrays_and_strings/is_isomorphic.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# author: bt3gl + + def is_isomorphic(s: str, t: str) -> bool: map_s_to_t = {}