30日目-Kaprekar Split
2369 ワード
--------------------------------------------🤞 My Solution -------------------------------------------
def kaprekar_split(n):
result = 0
if n == 1:
location = 0
else:
square = str(n * n)
location = int(square.__len__() / 2)
result = int(square[:location]) + int(square[location:])
if n != result:
location = -1
return location
Reference
この問題について(30日目-Kaprekar Split), 我々は、より多くの情報をここで見つけました https://velog.io/@vivala0519/30일차テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol