Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.
This project is maintained by chankruze
You and your friends like to share YouTube links all throughout the day. You want to keep track of all the videos you watch in your own personal notepad, but you find that keeping the entire link is unnecessary.
Keep the video ID (the combination of letters and numbers at the end of the link) in your notepad to slim down the URL.
Create a program that parses through a link, extracts and outputs the YouTube video ID.
A string containing the URL to a YouTube video. The format of the string can be in “https://www.youtube.com/watch?v=kbxkq_w51PM” or the shortened “https://youtu.be/KMBBjzp5hdc” format.
A string containing the extracted YouTube video id.
https://www.youtube.com/watch?v=RRW2aUSw5vU
RWW2aUSwvU
The input can be in two different formats.
Language | Solution |
---|---|
C | not available |
CPP | not available |
C# | not available |
Python | available |
Java | not available |
Ruby | not available |
Swift | not available |