프로그래머스 - 완주하지 못한 선수

문제 설명

수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다.
마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수들의 이름이 담긴 배열 completion이 주어질 때, 완주하지 못한 선수의 이름을 return 하도록 solution 함수를 작성해주세요.

Day8 Create a Button

Objective

In this challenge, we practice creating buttons in JavaScript. Check out the attached tutorial for learning materials.


Day7 Regular Expressions II

Task

Complete the function in the editor below by returning a RegExp object, re, that matches any string s satisfying both of the following conditions:

  • String s starts with the prefix Mr., Mrs., Ms., Dr., or Er.
  • The remainder of string s (i.e., the rest of the string after the prefix) consists of one or more upper and/or lowercase English alphabetic letters (i.e., [a-z] and [A-Z]).

Day7 Regular Expressions III

Task

Complete the function in the editor below by returning a RegExp object, re, that matches every integer in some string s.


Constraints

  • The length of string s is >= 3.
  • It’s guaranteed that string s contains at least one integer.

Day7 Regular Expressions I

Objective

In this challenge, we use a Regular Expression to evaluate a string. Check out the attached tutorial for more details.


Task

Complete the function in the editor below by returning a RegExp object, re, that matches any string s that begins and ends with the same vowel. Recall that the English vowels are a, e, i, o, and u.


Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×