Add project structure

This commit is contained in:
2021-03-17 10:32:45 +01:00
parent cf184f7747
commit 350087354a
4 changed files with 44 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class Transform(object):
"""Class to transform a given integer into a palindrome"""
def __init__(self):
super(Transform, self).__init__()
@staticmethod
def palindrome(int):
return int
View File