หมายเลขนี้เป็นเลขเนินหรือไม่?


17

หมายเลขฮิลล์คือตัวเลขที่มีตัวเลขเหมือนกันในตัวแรกและตัวสุดท้ายแต่นั่นไม่ใช่ทั้งหมด ในจำนวนเนินตัวเลขแรกจะเพิ่มขึ้นอย่างเข้มงวดและตัวเลขสุดท้ายจะลดลงอย่างเคร่งครัด ตัวเลขที่ใหญ่ที่สุดสามารถทำซ้ำได้

นี่คือตัวอย่างของจำนวนเขา:

12377731 | 1237...             | ...731
^ same ^ | strictly increasing | strictly decreasing 
---------+---------------------+---------------------
12377731
   ^^^ okay because largest digit can be repeated

นี่ไม่ใช่ :

4588774 | ...8774
        |     ^^ not the largest digit
        |        so this has to be strictly decreasing
        |        but it's not, so not a hill number

ท้าทาย

รับจำนวนเต็มบวกเขียนโปรแกรมเต็มหรือฟังก์ชั่นที่ส่งกลับความจริงสำหรับหมายเลขฮิลล์ แต่เท็จในค่าอื่น ๆ

หมายเหตุ:

  • การป้อนข้อมูลและการส่งออกอาจจะอยู่ในรูปแบบที่เหมาะสมใด
  • นี่คือดังนั้นคำตอบที่สั้นที่สุดในแต่ละภาษาชนะ!

กรณีทดสอบ

12321 -> Truthy
1233321 -> Truthy
99 -> Truthy
3 -> Truthy
234567992 -> Truthy
1232 -> Falsy
778896 -> Falsy
23232 -> Falsy
45566554 -> Falsy
5645 -> Falsy

5
เกี่ยวกับอะไร 222222222อะไร มันเป็นหมายเลขเนินเขาแบน ๆ ?
frarugi87

1
222222222เป็นเลขฮิลล์ตัวเลขที่ใหญ่ที่สุดคือ 2 และสามารถทำซ้ำได้
u_ndefined

1
สตริงเหมาะสมหรือไม่
Sanchises

@ frarugi87 ดูความคิดเห็นด้านบน
เดนนิส

คือ1230321จำนวนเนินเขาหรือไม่?
HelloGoodbye

คำตอบ:


10

เยลลี่ขนาด 8 ไบต์

_ƝṠÞ+SƊƑ

ลองออนไลน์!

มันทำงานอย่างไร

_ƝṠÞ+SƊƑ  Main link. Argument: n (integer)

_Ɲ        Take the differences of neighboring digits.
          This maps n = abcd to [a-b, b-c, c-d].
       Ƒ  Fixed; apply the link to the left and return 1 if the result is equal to
          its argument, 0 if not.
      Ɗ       Drei; combine the three links to the left into a monadic chain.
  ṠÞ              Sort the differences by their signs (negative, zero, positive).
     S            Take the sum of the differences, yielding 0 if and only if the
                  first digit is equal to the last.
    +             Add the sum to each difference.

6

JavaScript (ES6), 62 54 ไบต์

รับอินพุตเป็นสตริง ส่งคืนค่าบูลีน

s=>s[-[...s].some(p=q=n=>q>(q=Math.sign(p-(p=n))))]==p

ลองออนไลน์!

แสดงความคิดเห็น

s =>                  // s = input string
  s[                  // we will eventually access either s[0] or s[-1]
    -[...s].some(     // depending on the result of this some()
      p = q =         // initialize p and q to non-numeric values
      n =>            // for each digit n:
        q > (         //   compare q with
          q =         //   the new value of q,
          Math.sign(  //   defined as the sign of
          p - (p = n) //   the difference between the current digit and the previous one
        ))            //   yield true if the previous q is greater than the new q
    )                 // s[-1] being undefined, a truhty some() will force the test to fail
  ] == p              // otherwise: test if the 1st digit s[0] is equal to the last digit p

JavaScript (ES6), 65 ไบต์

01

s=>/N(,-\d+)*(,0)*[^0-]*$/.test([...s].map(p=v=>p-(p=v)))&p==s[0]

ลองออนไลน์!

อย่างไร?

[-9,9]

[...s].map(p = v => p - (p = v))

ตัวอย่าง:

"234567992" --> [ NaN, -1, -1, -1, -1, -1, -2, 0, 7 ]

อาร์เรย์นี้ถูกบังคับให้ใช้กับสตริงซึ่งให้:

"NaN,-1,-1,-1,-1,-1,-2,0,7"

เราใช้นิพจน์ทั่วไปต่อไปนี้:

 +-----------------------> the second 'N' of 'NaN'
 |    +------------------> a sequence of negative numbers
 |    |     +------------> a sequence of zeros
 |    |     |     +------> a sequence of positive numbers
 |    |     |     |  +---> end of string
 |    |     |     |  |
 |/¨¨¨¨¨¨\/¨¨¨\/¨¨¨¨\|
/N(,-\d+)*(,0)*[^0-]*$/

สุดท้ายเราทดสอบด้วยว่าตัวเลขสุดท้ายpมีค่าเท่ากับตัวเลขแรกs[0]หรือไม่


คุณสามารถบันทึก 5 ไบต์โดยการป้อนข้อมูลเป็นอาร์เรย์ของตัวเลข
Shaggy

@Shaggy ฉันหวังว่าฉันจะทำได้ แต่ตอนนี้เห็นได้ชัดว่าไม่ได้รับอนุญาต
Arnauld

จากสเป็คโดยเน้นที่ต้นฉบับ: "อินพุตและเอาต์พุตสามารถอยู่ในรูปแบบที่สมเหตุสมผล " - โดยทั่วไปเราจะพิจารณาอาร์เรย์หลักในรูปแบบที่เหมาะสมสำหรับจำนวนเต็ม
Shaggy

4

Pyth, 16 ไบต์

&SI_._MJ.+jQT!sJ

ลองชุดทดสอบ

          jQT          input in base 10
       J.+             J = differences: [3,1,4,1] -> [-2,3,-3]
    ._M                Signs of each element of J
   _                   Reverse the list
 SI                    and check if it is Invariant under Sorting.
                       If this is true, J consists of some positive numbers,
                         followed by some 0s, followed by some negative numbers,
                         which is what we want.
            !sJ        Now we check the other hill condition by ensuring
                         sum(differences) = 0; i.e. the first and last digit are equal.
&                      We take the logical AND of both conditions.

4

เยลลี่ 11 ไบต์

DIµṠNṢƑaS¬$

คำอธิบาย:

D               Convert to a list of Digits.
 I              Increments; compute differences between successive elements.
  µ             Start new µonadic link.
   Ṡ              Find Ṡign of each increment
    N             then negate;
     ṢƑ           is the result invariant under Ṣorting?
                  If so, the increments consist of some positive numbers,
                     followed by some 0s, followed by some negative numbers,
                     which is what we want.
       a          Logical AND this result with
        S¬$       logical NOT of the Sum of the increments.
                  If the sum of the increments is zero, first and last digits are equal.

ลองออนไลน์!




3

R , 65 ไบต์

รับสาย รับแนวคิดในการตรวจสอบค่า invariance ของการเรียงลำดับจากคำตอบของ Pyth

function(a)!sum(d<-diff(utf8ToInt(a)))&all(sort(k<-sign(d),T)==k)

ลองออนไลน์!


2

05AB1E , 19 17 13 12 ไบต์

¥D.±Â{RQsO_*

-5 ไบต์โดยสร้างพอร์ตของคำตอบPythของ@lirtosiastคำตอบ

ลองออนไลน์หรือตรวจสอบกรณีทดสอบทั้งหมดตรวจสอบกรณีทดสอบทั้งหมด

คำอธิบาย:

¥           # Push the deltas of the digits of the (implicit) input
            #  i.e. 4588774 → [1,3,0,-1,0,-3]
 D          # Duplicate this list
          # Get the sign of each
            #  [1,3,0,-1,0,-3] → [1,1,0,-1,0,-1]
    Â       # Bifurcate (short for DR: Duplicate and Reverse copy)
            #  i.e. [1,1,0,-1,0,-1] → [-1,0,-1,0,1,1]
     {      # Sort the copy
            #  i.e. [-1,0,-1,0,1,1] → [-1,-1,0,0,1,1]
      R     # Reverse it
            #  i.e. [1,1,0,0,-1,-1]
       Q    # And check if they are equal
            #  i.e. [1,1,0,-1,0,-1] and [1,1,0,0,-1,-1] → 0 (falsey)
s           # Swap to get the list of deltas again
 O          # Take the sum
            #  i.e. [1,3,0,-1,0,-3] → 0
  _         # And check if it's exactly 0
            #  0 → 1 (truthy)
*           # Check if both are truthy (and output implicitly)
            #  i.e. 0 and 1 → 0 (falsey)

Â{RQอีกทางเลือกหนึ่งสามารถ(Â{Qสำหรับเดียวกันไบต์นับที่(ขัดแย้งแต่ละลงชื่อ: ลองออนไลน์



2

MATLขนาด 12 ไบต์

dZSd1<AGds~*

ลองออนไลน์!

คำอธิบาย

อินพุตเป็นสตริงตัวเลข เอาท์พุทเป็นหรือ1 0จำนวน222222คือหมายเลขเนินเขาตามโปรแกรมนี้ บันทึก 2 ไบต์ด้วยการคัดลอกวิธีของ Dennis เพื่อตรวจสอบความเท่าเทียมกันของตัวเลขตัวแรกและตัวสุดท้าย

d               % Takes the difference between digits
 ZS             % Calculate the sign. 
   d            % Take the difference again. 
    1<          % A number is a hill number if these differences are < 1.
      A         % Truthy iff above is all true OR if array is empty (necessary for short inputs)
       Gds      % Push the input, and sum all the differences.
          ~     % Negate
           *    % Multiply the two tests (=logical AND).

1

Python 2 , 53 ไบต์

def f(s):x=map(cmp,s,s[1:]);s[:sorted(x)==x]!=s[-1]>_

รับอินพุตเป็นสตริง การส่งออกคือการมีหรือไม่มีข้อยกเว้นการมีหรือไม่มีข้อยกเว้น

ลองออนไลน์!


Python 2 , 62 ไบต์

lambda s:s[:eval('<='.join(map(str,map(cmp,s,s[1:]))))]==s[-1]

รับอินพุตเป็นสตริงและส่งคืน Boolean

ลองออนไลน์!


โอ้โหฉันเจ็บหัวมาหลายชั่วโมงแล้วและฉันก็ไม่สามารถคิดอะไรที่สั้นกว่าการนับรวมของโซลูชั่นทั้งสองของคุณ! ไชโย
etene

1

Mathematica / Wolfram Language, 69 64 ไบต์

ฟังก์ชั่นบริสุทธิ์ จะเข้าเป็นจำนวนเต็มผลตอบแทนหรือTrueFalse

Sort[x=Sign@-Differences[y=IntegerDigits@#]]==x&&y[[1]]==Last@y&

คำอธิบาย:

ประโยคแรกตรวจสอบ "เนินเขา":

  • IntegerDigits: รับตัวเลขจากจำนวนเต็ม yเก็บไว้ใน
  • -Differences: ทำตามความแตกต่างและพลิกสัญญาณ
  • Sign: แทนที่แต่ละรายการด้วย +1 ถ้าบวก 0 ถ้าเป็นศูนย์และ -1 ถ้าเป็นลบ xเก็บไว้ใน
  • Sort: เรียงลำดับรายการจาก +1, 0, -1 จากน้อยไปหามากที่สุด xเปรียบเทียบกับรายการเดิม

ประโยคที่สองตรวจสอบว่าตัวเลขตัวแรกและตัวสุดท้ายเท่ากันหรือไม่

เคล็ดลับหมวก @IanMiller สำหรับเคล็ดลับในการปรับแต่งรหัสนี้


ข้อเท็จจริงที่ว่าIntegerDigitsและDifferencesชื่อฟังก์ชันค่อนข้างยาวนั้นค่อนข้างน่ารำคาญ
Michael Seifert

สามารถบันทึกได้ 5 ไบต์ด้วยการเปลี่ยนแปลงต่อไปนี้:Sort[x=Sign@-Differences[y=IntegerDigits@#]]==x&&y[[1]]==Last@y&
Ian Miller


0

เรติน่า 0.8.2 , 52 ไบต์

.
$*1;$&$*1,
(1+),\1
,
^(1+);(,1+;)*(,;)*(1+,;)*\1,$

ลองออนไลน์! ลิงค์รวมถึงกรณีทดสอบ คำอธิบาย:

.
$*1;$&$*1,

แปลงแต่ละหลักให้เป็นเอกนารีสองครั้งคั่นด้วย;s และสิ้นสุดด้วย,s อย่างไรก็ตามคุณสามารถคิดผลลัพธ์เป็นตัวเลขตัวแรก a ;แล้วคู่ของตัวเลขที่อยู่ติดกันตัวเลขของแต่ละคู่คั่นด้วย,และคู่คั่นด้วย;s จากนั้นอีกหนึ่ง;,แล้วหลักสุดท้ายแล้วเป็นครั้งสุดท้าย

(1+),\1
,

ลบคู่ของตัวเลขที่อยู่ติดกัน ใบนี้;,;ตัวเลขที่เท่ากันและ1s ในด้านที่มากขึ้นสำหรับตัวเลขที่ไม่เท่ากัน (สามารถทำได้โดยเป็นส่วนหนึ่งของ regex ต่อไปนี้ แต่เห็นได้ชัดว่าจะไม่เป็นกอล์ฟ)

^(1+);(,1+;)*(,;)*(1+,;)*\1,$

จับคู่ตัวเลขแรกแล้วตามด้วยจำนวนคู่ของตัวเลขที่สูงขึ้นจากนั้นตามด้วยจำนวนคู่ใด ๆ ของตัวเลขที่เท่ากันจากนั้นตามด้วยจำนวนคู่ใด ๆ ของตัวเลขที่มากไปหาน้อยจากนั้นจับคู่ตัวเลขแรกอีกครั้ง


0

สีแดง 181 ไบต์

func[n][m: last sort copy t: s: form n
parse t[opt[copy a to m(a: sort unique a)]copy b thru any m
opt[copy c to end(c: sort/reverse unique c)]](s = rejoin[a b c])and(s/1 = last s)]

ลองออนไลน์!

อ่านเพิ่มเติมได้:

f: func[n][
    t: s: form n                                    
    m: last sort copy t                             
    parse t [ opt [ copy a to m (a: sort unique a) ] 
              copy b thru any m
              opt [ copy c to end (c: sort/reverse unique c) ]
            ]
    (s = rejoin [ a b c ]) and (s/1 = last s)
]

0

Powershell, 77 ไบต์

($x=-join("$($args|%{"-$_;$_"})"|iex))-match'^(-\d)+0*\d+$'-and$x[1]-eq$x[-1]

สคริปต์ทดสอบที่ตีกอล์ฟน้อยกว่า:

$f = {
                                           # $args = 1,2,3,3,3,2,1
$a=$args|%{"-$_;$_"}                       # "-1;1","-2;2","-3;3","-3;3","-3;3","-2;2","-1;1"
$d="$a"                                    # "-1;1 -2;2 -3;3 -3;3 -3;3 -2;2 -1;1"
$x=-join($d|Invoke-Expression)             # "-1-1-100111"
$x-match'^(-\d)+0*\d+$'-and$x[1]-eq$x[-1]  # $true or $false

}

@(
    ,($True , 1,2,3,2,1 )
    ,($True , 1,2,3,3,3,2,1 )
    ,($True , 9,9 )
    ,($True , 3 )
    ,($True , 2,3,4,5,6,7,9,9,2 )
    ,($False, 1,2,3,2 )
    ,($False, 7,7,8,8,9,6 )
    ,($False, 2,3,2,3,2 )
    ,($False, 4,5,5,6,6,5,5,4 )
    ,($False, 5,6,4,5 )
) | % {
    $expected,$a = $_
    $result = &$f @a
    "$($result-eq$expected): $result"
}

เอาท์พุท:

True: True
True: True
True: True
True: True
True: True
True: False
True: False
True: False
True: False
True: False

0

C # (Visual C # Interactive คอมไพเลอร์) , 161 ไบต์

s=>{var m=s.OrderBy(c=>c).Last();return s[0]==s.Last()&Enumerable.Range(1,s.Length-1).All(i=>i>s.LastIndexOf(m)?s[i-1]>s[i]:i>s.IndexOf(m)?m==s[i]:s[i-1]<s[i]);}

ลองออนไลน์!

นี่คือภาพรวมของวิธีการทำงานของ ...

  1. อินพุตอยู่ในรูปแบบของ string
  2. ค้นหาตัวเลขที่ใหญ่ที่สุด
  3. ตรวจสอบให้แน่ใจว่าตัวเลขตัวแรกและตัวสุดท้ายเหมือนกัน
  4. ตรวจสอบให้แน่ใจว่าตัวเลขหลังจากการเกิดขึ้นครั้งสุดท้ายของตัวเลขที่ใหญ่ที่สุดลดลง
  5. ตรวจสอบให้แน่ใจว่าตัวเลขระหว่างการเกิดขึ้นครั้งแรกและครั้งสุดท้ายของตัวเลขที่ใหญ่ที่สุดเท่ากับตัวเลขที่ใหญ่ที่สุด
  6. ตรวจสอบให้แน่ใจตัวเลขก่อนที่จะเกิดขึ้นครั้งแรกของตัวเลขที่ใหญ่ที่สุดจะเพิ่มขึ้น


โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.