ชื่อกลางของฉันคืออะไร


30

หมายเหตุ:คำตอบที่ชนะจะได้รับการคัดเลือกในวันที่4/12/17ผู้ชนะปัจจุบันคือJolf 1 ไบต์

ฉันประหลาดใจที่เรายังไม่มีความท้าทายชื่อกลางของฉันในเว็บไซต์นี้ ฉันค้นหามาก แต่ก็ไม่พบอะไรเลย หากนี่คือรายการซ้ำโปรดตั้งค่าสถานะเป็นเช่นนี้

ความท้าทายของคุณ

แยกสตริงที่มีลักษณะเช่นและผลตอบแทนJo Jean SmithJean

กรณีทดสอบ

Input: Samantha Vee Hills
Output: Vee

Input: Bob Dillinger
Output: (empty string or newline)

Input: John Jacob Jingleheimer Schmidt
Output: Jacob Jingleheimer

Input: Jose Mario Carasco-Williams
Output: Mario

Input: James Alfred Van Allen
Output: Alfred Van 

(อันสุดท้ายนั้นไม่ถูกต้องทางเทคนิค แต่การแก้ไขที่ยากเกินไป)

หมายเหตุ:

  • ชื่อจะมีส่วนที่คั่นด้วยช่องว่างอย่างน้อย 2 ส่วนโดยมีชื่อกลางที่ไม่ จำกัด ระหว่างพวกเขาหรืออาจเป็นรายการ / อาร์เรย์ของสตริง
  • ชื่ออาจประกอบด้วยตัวอักษร (ตัวพิมพ์เล็กและตัวพิมพ์ใหญ่) และ - ( 0x2d)
  • คุณอาจส่งออกบรรทัดใหม่ต่อท้าย
  • คุณอาจต้องป้อนข้อมูลเพื่อให้ขึ้นบรรทัดใหม่
  • อินพุตจาก STDIN อนุญาตให้ใช้พารามิเตอร์ฟังก์ชันหรืออาร์กิวเมนต์บรรทัดคำสั่ง แต่ไม่อนุญาตให้เข้ารหัสแบบ hard-in
  • ช่องโหว่มาตรฐานต้องห้าม
  • เอาท์พุทอาจเป็นค่าตอบแทนฟังก์ชั่น, STDOUT, STDERR ฯลฯ
  • อนุญาตช่องว่างต่อท้าย / บรรทัดใหม่ / แท็บในเอาต์พุต
  • มีคำถามอะไรไหม? แสดงความคิดเห็นด้านล่าง!

นี่คือดังนั้นผู้ที่สั้นที่สุดในจำนวนไบต์ชนะ!


2
เอาต์พุตสามารถเป็นรายการสตริงได้หรือไม่?
Anthony Pham

5
หากรูปแบบอื่นที่ไม่ใช่สตริงที่คั่นด้วยช่องว่างได้รับอนุญาตโปรดแก้ไขในสเปค
Martin Ender

5
@ programmer5000: ถ้าอินพุตสามารถเป็นรายการของสตริงได้แล้วเอาท์พุตอย่างไร คือ["John", "Jacob", "Jingleheimer", "Schmidt"]-> ["Jacob", "Jingleheimer"]วิธีการแก้ปัญหาที่ถูกต้อง?
nimi

3
อนุญาตให้ใช้พื้นที่นำหน้าได้หรือไม่
betseg

2
@DJ เพราะ "Van" ไม่ใช่ชื่อกลางของเขามันเป็นส่วนหนึ่งของนามสกุลของเขา กรณีที่น่ารำคาญอย่างยิ่งคือ David Lloyd George ซึ่งมีชื่อแรกคือ David และนามสกุลคือ Lloyd George ความพยายามใด ๆ ที่จะแยกชื่อคนจริงเช่นนี้จะถึงวาระ ในความเป็นจริงคุณไม่สามารถบอกได้ว่าชื่อและนามสกุลคืออะไร (คิดว่าหลี่ชิ)
David Conrad

คำตอบ:


4

Jolf, 1 ไบต์

รับด้านในของอินพุต ลองที่นี่!


ดูเหมือนจะไม่ได้รับตัวอย่างการทำงาน - ดูเหมือนว่าไม่มีอะไรเกิดขึ้นเมื่อฉันคลิกปุ่มใด ๆ ใช้ Chrome 57.0.2987.133

@YiminRong ฉันสามารถมั่นใจได้ว่าจะทำงานกับ Firefox เท่านั้น
Conor O'Brien

44

โอห์ม 2 ไบต์ (CP437)

ยอมรับและส่งคืนรายการสตริง

()

คำอธิบาย:

()   Main wire, arguments: a

(    Remove the first element of a
 )   ...and then the last element of that
     Implicit output

10
เครื่องมือที่เหมาะสมสำหรับงานที่ฉันเดา
Rohan Jhunjhunwala

15

เป็นกลุ่ม6 5 ไบต์

dW$BD

ลองออนไลน์!

(เอาต์พุตที่มีพื้นที่ต่อท้าย)

เนื่องจาก Vim เข้ากันได้กับ V ฉันจึงได้รวมลิงค์ TIO สำหรับ V

คำอธิบาย

dW                      " Delete up to the next word (removes the first name)
$                       " Go to the end of the line
B                       " Go back one word
D                       " Delete it

Drat คุณชนะฉันมัน dWWDช่วยให้คุณประหยัดหนึ่งไบต์
DJMcMayhem

5
@DJMcMayhem ใช้งานได้กับชื่อกลางเพียงชื่อเดียวเท่านั้น
Martin Ender

อะไรคือความแตกต่างระหว่าง dW และ dw?
Duncan X Simpson

1
@DuncanXSimpson dWลบจนกว่าช่องว่าง dwลบจนกระทั่งอักขระที่ไม่ใช่คำ
คดีฟ้องร้องกองทุนโมนิก้า

14

Pythonขนาด 24 ไบต์

lambda n:n.split()[1:-1]

ลองป้อนสตริงออนไลน์!

รูปแบบอินพุต: สตริง


Python 2 , 16 ไบต์

lambda n:n[1:-1]

ลองป้อนรายการออนไลน์!

รูปแบบอินพุต: รายการ


คุณควรแก้ไขชื่อด้วยPythonแทนที่จะเป็นPython 2เพราะมันใช้งานได้Python 3ดีและกำลังจะโพสต์สิ่งนั้น
Mr. Xcoder

@ L3viathan ตั้งแต่ OP ไม่ได้กล่าวถึงรูปแบบผลลัพธ์must be a stringและเนื่องจากรูปแบบการป้อนข้อมูลได้รับอนุญาตให้เป็นรายการจึงไม่สามารถถือว่ารายการพิมพ์เป็นผลลัพธ์ที่ผิด!
กีรนาปราการะรัน

ตามความเห็นของคำถามคุณสามารถป้อนรายการสตริงได้ ประหยัดพวงไบต์lambda n:n[1:-1]
ลุค Sawczak

1
เนื่องจากคุณสามารถอ่านจาก STDIN คุณสามารถแทนที่แลมบ์ดาด้วยinput()(Python 3 เท่านั้น)
BallpointBen

คุณพูดถูก ขอบคุณ ฉันได้เพิ่มการแก้ไข!
กีรนาปราการะรัน

13

Brain-Flak , 133 ไบต์

{{}((((()()()()){}){}){}[{}](<()>)){{}{}(<(())>)}{}}{}{({}<>)<>}<>{{}((((()()()()){}){}){}[{}](<()>)){{}{}(<(())>)}{}}{}{({}<>)<>}<>

ลองออนไลน์!

โค้ดขนาด 132 ไบต์บวก 1 ไบต์สำหรับ-cแฟล็กซึ่งอนุญาตให้อินพุตและเอาต์พุต ASCII

น่าเสียดายที่นี่มีรหัสซ้ำจำนวนมาก แต่มันยากที่จะนำมาใช้ซ้ำ ฉันจะดูในภายหลัง นี่คือคำอธิบาย:

#While True
{
    #Pop
    {}

    #Not equals 32
    ((((()()()()){}){}){}[{}](<()>)){{}{}(<(())>)}{}

#Endwhile
}

#Pop the 0
{}

#Reverse Stack
{({}<>)<>}<>

#While True
{
    #Pop
    {}

    #Not equals 32
    ((((()()()()){}){}){}[{}](<()>)){{}{}(<(())>)}{}

#Endwhile
}

#Pop the 0
{}

#Reverse Stack
{({}<>)<>}<>

86 ไบต์เมื่อคุณลบความคิดเห็น ฉันเพิ่มสองคนแรกและบรรทัดสุดท้าย TIO
Riley

แก้ปัญหา @riley Cool อย่าลังเลที่จะโพสต์ด้วยตัวคุณเอง!
DJMcMayhem


12

Haskell, 23 , 17 9 ไบต์

init.tail

รับและส่งคืนรายการสตริง ลองออนไลน์!

วางสตริงแรกทิ้งสตริงสุดท้าย

แก้ไข: @Generic Display Name ระบุว่าอินพุตสามารถเป็นรายการของสตริงซึ่งบันทึกได้ 6 ไบต์

แก้ไข II: ส่งคืนรายการสตริงแทนที่จะเป็นสตริงเดี่ยว


ดูเหมือนว่าอนุญาตให้ป้อนข้อมูลได้ดังนั้นให้วางคำสำหรับ -5 ไบต์
ชื่อที่ปรากฏทั่วไป

@GenericDisplayName: โอ้ไม่ได้สังเกต ขอบคุณ!
nimi

คำตอบ Ohm ของฉันและ Mathematica ตอบรับทั้งรายการเอาท์พุทของสตริงเช่นกันดังนั้นคุณอาจจะลดลงunwords.ถึง -8 ไบต์
Nick Clifford

@ NickClifford: ใช่ฉันเห็นว่าตัวเองและขอ OP เพื่อชี้แจง
nimi

11

Mathematica ขนาด 10 ไบต์

Rest@*Most

ฟังก์ชันที่ไม่มีชื่อที่ยอมรับและส่งคืนรายการสตริง

Restทิ้งองค์ประกอบสุดท้ายMostทิ้งองค์ประกอบแรก@*คือองค์ประกอบของฟังก์ชั่น การสลับRestและMostหรือใช้การจัดองค์ประกอบที่ถูก/*ต้องจะสามารถใช้ได้เช่นกัน นี่จะเป็นการสร้างดัชนีผ่าน#[[2;;-2]]&หนึ่งไบต์


10

Brain-Flak , 86 ไบต์

(()()){({}[()]<{{}((((()()()()){}){}){}[{}](<()>)){{}{}(<(())>)}{}}{}{({}<>)<>}<>>)}{}

ลองออนไลน์!

Most of this code comes from this answer. If you like my solution you should upvote that one as well.

#Push 2
(()())

#Loop twice
{({}[()]<

  #While not a space
  {
      #Pop
      {}

      #Not equals 32
      ((((()()()()){}){}){}[{}](<()>)){{}{}(<(())>)}{}

  #Endwhile
  }

  #Pop the 0
  {}

  #Reverse Stack
  {({}<>)<>}<>

#End loop twice
>)}{}

Well done! I didn't think about holding a counter for pushing later, so I spent too long thinking about how to loop across different stacks.
DJMcMayhem

8

Java 7, 74 bytes

String f(String s){return s.substring(s.indexOf(' '),s.lastIndexOf(' '));}

Java 8, 49 bytes

s->s.substring(s.indexOf(' '),s.lastIndexOf(' '))

Function which identifies the first occurrence of the space character and the last one and extracts the middle. The resulting string is prefixed by a space character (at the time of the posting, OP hasn't clarified if leading spaces are allowed), which can be eliminated by adding .trim() to the code for an extra cost of 7 bytes.

Compared to C#, Java has the advantage of specifying the end index instead of sub-string length, which brings down the byte count.


7

JavaScript (ES6), 22 bytes

Takes and outputs an array of strings.

([_,...a])=>a.pop()&&a

Test cases

String version (27 bytes)

Takes and outputs a string. The output string is either a single space if no middle name was found, or the middle names with leading and trailing spaces.

s=>(/ .* /.exec(s)||' ')[0]


/./.exec.bind(/ .* /) seems to mimic #2, except null for none
dandavis

7

AWK, 17 10 bytes

Saved 7 bytes thanks to @steve!

$NF=$1=x;1

Try it online!

Explanation:

$NF=    set last word to
$1=     set first word to
x       an empty variable, ie empty string
1       default action, ie print everything

Can be shaved down to 11 bytes, $NF=$1="";1
steve

3
Or 10 using $NF=$1=x;1
steve

1
@steve what does 1 do? I'm not so good at AWK :)
betseg

1 just means take the default action, that is, to print $0.
steve

6

Groovy, 19 bytes

{it.split()[1..-2]}

Explanation:

{        
 it                  all closures have an implicit argument called "it"
   .split()          splits by spaces by default. Returns an array of words
           [1..-2]   take the whole array from the second index (1) to the penultimate index (-2). Implicitly return
                  }

A closure / anonymous function


1
Welcome to PPCG! Can you take a list of strings as input to skip the .split()?
Martin Ender

Martin Ender Yes, if you assume that the input will always be a list of strings then {it[1..-2]} would work.
staticmethod

5

PHP, 37 Bytes

<?=join(" ",array_slice($argv,2,-1));

-4 bytes for an output as array

print_r(array_slice($argv,2,-1));

PHP, 42 Bytes

echo trim(trim($argn,join(range("!",z))));

PHP, 50 Bytes

echo preg_filter("#(^[^\s]+ |[^\s]+$)#","",$argn);


4

Perl 5, 27 18 bytes

Need to run with -n option.

/ (.+) /&&print$1

Try it online!

Wanted to do something similar in sed first, but, unfortunately, it doesn't support non-greedy quantifier. It is needed in case middle name is more than one word.

Edit

-9 bytes thanks to Dada.

Non-greedy quantifier is not needed anymore, among with some other things.


/ (.+) /&&print$1 should be sorter. Great to see some new people golfing with Perl!
Dada

@Dada Thanks for the tip! It's actually my first time ever writing in Perl. Do you know why print if s| (.+) |\1| doesn't work? To me it looks similar to what you wrote.
Maxim Mikhaylov

print if s| (.+) |\1| replaces the middle part with... the middle part! (minus the spaces before and after), so it doesn't work. On the other side, what I suggested only matches the middle part and print only it ($1).
Dada

4

Javascript (ES6) 49 16 bytes

Edit:

a=>a.slice(1,-1)

Try it online!

ungolfed:

function(name) {
  return a.slice(1, -1); //start at the second item and end at the second to last item
};

I forgot some of the simple properties of slice, and that the input can be an array. Thanks to @Neil and @fəˈnɛtɪk I was able to remove 27 bytes. Still not really competing.

Original:

This isn't really competing but here's a Javascript solution:

a=>{a=a.split(' ');return a.slice(1, a.length-1)}

This creates an anonymous function equal to:

function(name) {
  let name = name.split(' '); //first middle last -> [first, middle, last]
  return name.slice(1, name.length - 1); //get the second item to the second to last item in the array.
}

How I golfed it

This is a pretty simple golf. I turned the function into an arrow function. Then I "minified" the code. This included renaming name into a single character(a in this case) and removing the let decloration of the variable.

Snippet

Hope this helps anyone who is stuck on the challenge.


The length - is unnecessary, as slice already accepts negative lengths as being relative to the end. This means that you no longer need the intermediate variable, so you can turn your arrow function from a block into an expression.
Neil

Actually the way it works is that -1 is the last but one that you need here.
Neil

It is also slice(1,-1). slice(1,-2) removes two from the end.
fəˈnɛtɪk

You can also assume that you were passed an array to begin with, which lets you just perform slice and you are done.
fəˈnɛtɪk

I'm 99% sure that was changed since I started it. Thanks again.
David Archibald




3

C#, 67 bytes

s=>s.Substring(s.IndexOf(' ')+1,s.LastIndexOf(' ')-s.IndexOf(' '));

Anonymous function which identifies the first occurrence of the space character and the last one and extracts the middle. It also extracts a trailing space, which can be removed at the cost of 2 bytes.

Full program with test cases:

using System;

namespace WhatsMyMiddleName
{
    class Program
    {
        static void Main(string[] args)
        {
            Func<string, string> f =
            s=>s.Substring(s.IndexOf(' ')+1,s.LastIndexOf(' ')-s.IndexOf(' '));

            Console.WriteLine(f("Jo Jean Smith"));          // "Jean"
            Console.WriteLine(f("Samantha Vee Hills"));     // "Vee"
            Console.WriteLine(f("Bob Dillinger"));          // ""
            Console.WriteLine(f("John Jacob Jingleheimer Schmidt"));// "Jacob Jingleheimer"
            Console.WriteLine(f("Jose Mario Carasco-Williams"));    // "Mario"
            Console.WriteLine(f("James Alfred Van Allen")); // "Alfred Van"
        }
    }
}



3

R, 30 27 22 bytes

Current solution due to user11599!

head(scan(,''),-1)[-1]

Takes input from stdin, returns each middle name as a separate string. Returns character() in the case of no middle name; that is, a vector of class character of length 0.

Explanation:

Read stdin into a list of strings, separated by spaces

     scan(,'')

Remove the last element. head returns the first n elements of a list, with n defaulting to 6. If n is -1 it returns all but the last element.

head(scan(,''),-1)

Now, remove the first element of this list.

head(scan(,''),-1)[-1]

This yields the middle name(s).


1
Even shorter: head(scan(,''),-1)[-1] 22 bytes. Note that '' are two single quotes.
user11599

If you don't want each name quoted, use, at 27 bytes, cat(head(scan(,''),-1)[-1])
user11599

Explanation: scan(,'') breaks the string into words, head(...,-1) drops the last word, head(...,-1)[-1] then drops the first word, cat() formats the output dropping the quotes. For no middle name, result isn't perfect, it's character(0), the empty string.
user11599

@user11599 Wow, thanks! I had played around with head() and tail(), but I didn't know you could pass a negative number as the second argument. Nice!
rturnbull

Your use of scan(,'') inspired me. I didn't think of approaching that way.
user11599

3

Ruby, 24 13 bytes

p ARGV[1..-2]

Saved 11 bytes thanks to Piccolo pointing out that array-like output is allowed.

Takes the name as separate command line arguments, e.g.:

$ ruby script.rb John Jacob Jingleheimer Schmidt

or

$ ruby -e 'p ARGV[1..-2]' John Jacob Jingleheimer Schmidt

Previous code (outputs a proper string):

puts ARGV[1..-2].join" "

@Jordan Good idea - however with $><<ARGV[1..-2].join" " it complains about the " " being unexpected, so I'd have to add parentheses - which would add 1 byte in the end.
Flambino

Ah, of course. My bad.
Jordan

The original poster said that the output can be an array, so you can shave some characters off by just changing your code to puts ARGV[1..-2], just so you know.
Piccolo

@Piccolo Huh? I don't see that anywhere? If true; p ARGV[1..-2] for 13 bytes - just looks nothing like the output in OPs challenge
Flambino


3

Golang, 152 81 bytes

import ."strings"
func f(x string)[]string{var k=Fields(x);return k[1:len(k)-1];}

It takes input as "Samantha Vee Hills" (with double quotes) and return the middle name to the stdout.

Try it Online!

Edit: @Dada, note that the "function as answer is allowed" shorten my code 71 bytes. a big thanks!


Welcome on the site. Submitting a function as answer is allowed, so you could shorten your code by doing something like this: Try it online!. Have a look at the Tips for Golfing in Go!
Dada

thank you @Dada for tips and shorten my code. It was my first code entry.
ersinakyuz

3

Matlab, 81, 79, 78, 55 Bytes

function x=a(s)
s=strsplit(s);x=strjoin(s(2:end-1));end

Takes in an input string, s, is split (by the default delimiter, whitespace char) into a cell array, from which the middle element is accessed. Then the middle elements are concatenated, or an empty string is returned.

Edit: thanks to Luis Mendo for saving 3 bytes!

Edit 2: Better solution from Ankit!


I am not a smart man! edited.
Owen Morgan

You can't use nnz on a cell array, but I did the other two changes :)
Owen Morgan

Suggested Edit by Ankit, who doesn't have enough rep to comment. (55 bytes): function x=a(s) s=strsplit(s);x=strjoin(s(2:end-1));end
mbomb007

3

C, 42 bytes

f(char**b){for(;b[2];printf("%s ",*++b));}

The parameter is a NULL terminated array of pointers to char.

See it work here.

The command line arguments may also be used with the same function.

C, 51 bytes

main(a,b)char**b;{for(;b[3];printf("%s ",b++[2]));}

A full program. Input is done through command line arguments.

See it work here.

C, 54 bytes

f(char**b){*strrchr(*b=strchr(*b,32),32)=0;*b+=!!**b;}

The parameter is an in/out parameter.

See it work here.


Welcome to PPCG!
Martin Ender

I'm receiving the following error when compiling with Visual Studio 2012:error C2100: illegal indirection
Johan du Toit

@JohanduToit VS is not C11 or even C99 conforming. My code is. As practical proof, both gcc and clang compile a valid program.
2501

2

Python 2, 42 19 16 Bytes

lambda n:n[1:-1]

Try it online! Thanks to @Kritixi Lithos for saving 23 bytes! Thanks @math_junkie for saving 3 more bytes. For input, put each part of the name as a string within a list like so:

["Samantha", "Vee", "Hills"]

And yes, the OP has approved a list to be a valid input.

Explanation

lambda n:n[1:-1]    # Returns only the middle elements... pretty literal here

1
print input()[1:-1] is shorter
Kritixi Lithos

Spring slicing sure is tricky
Anthony Pham

lambda n:n[1:-1] is even shorter
math junkie

1
I may have tried with a wrong input. But when I tried, with Samantha Vee Hills as input in repl.it link that you've shared, this just prints amantha Vee Hill which is definitely not the output required.
Keerthana Prabhakaran

2
Names will always have at least 2 space-separated parts is the first point of the question right.
Keerthana Prabhakaran

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