विवरण
हम एक पूर्णांक को कम से कम 3 अंकों के ट्रिपल-संतुलित के साथ मानते हैं यदि, तीन भागों में विभाजित होने पर, प्रत्येक भाग में अंक एक ही संख्या तक होते हैं। हम संख्याओं को इस प्रकार विभाजित करते हैं:
abcdefghi - Standard case: the number of digits is divisable through 3:
abc def ghi
abcdefgh - Number % 3 == 2: The outer groups are both assigned another digit
abc de fgh (the inner group will have one digit less than both outer groups)
abcdefghij - Number % 3 == 1: The inner group is assigned the extra digit
abc defg hij (the inner group will have one digit more than the outer groups)
चुनौती
आपका कार्य एक प्रोग्राम लिखना है, जो, कम से कम 3 अंकों के साथ पूर्णांक देता है, यह निर्धारित करता है कि क्या दी गई संख्या ट्रिपल-संतुलित है और इसके परिणाम के आधार पर एक सत्य या मिथ्या मूल्य को आउटपुट करता है।
परीक्षण के मामलों
333 -> True
343 -> False
3123 -> True
34725 -> True
456456 -> False
123222321 -> True
यह कोड-गोल्फ है , इसलिए मानक खामियां लागू होती हैं और बाइट्स में सबसे कम जवाब जीत सकते हैं!
when split in three parts,