Skip to content
View jesuisYves's full-sized avatar
  • V. N. Karazin Kharkiv National University
  • Kremenchuk, Ukraine
  • 18:06 (UTC +02:00)

Block or report jesuisYves

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Generate RegExp dynamically to match... Generate RegExp dynamically to match the pattern
    1
    // Given a pattern and a string line, find if line follows the same pattern.
    2
    // pattern = 'abba', line = 'dog cat cat dog'
    3
    
                  
    4
    const isMatched = (pattern, line) => {
    5
      const words = line.split(" ");
  2. shuffle-simulation shuffle-simulation Public

    Simulate different shuffle methods

    JavaScript