Add project structure
This commit is contained in:
11
transform/Transform.py
Normal file
11
transform/Transform.py
Normal 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
|
0
transform/__init__.py
Normal file
0
transform/__init__.py
Normal file
Reference in New Issue
Block a user