DSA-in-December

โœจ ๐——๐—ฎ๐˜† ๐Ÿฏ: ๐—ฆ๐˜๐—ฟ๐—ถ๐—ป๐—ด๐˜€ โœจ

๐Ÿ“Œ The C-style character string originated within the C language and continues to be supported within C++. This string is actually a one-dimensional array of characters which is terminated by a null character โ€˜\0โ€™. Thus a null-terminated string contains the characters that comprise the string followed by a null. The following declaration and initialization create a string consisting of the word โ€œHelloโ€. To hold the null character at the end of the array, the size of the character array containing the string is one more than the number of characters in the word โ€œHello.โ€

โœ๏ธ ๐—™๐—ผ๐—ฟ ๐—ฏ๐—ฒ๐˜๐˜๐—ฒ๐—ฟ ๐˜‚๐—ป๐—ฑ๐—ฒ๐—ฟ๐˜€๐˜๐—ฎ๐—ป๐—ฑ๐—ถ๐—ป๐—ด ๐—ฟ๐—ฒ๐—ณ๐—ฒ๐—ฟ ๐—ณ๐—ผ๐—น๐—น๐—ผ๐˜„๐—ถ๐—ป๐—ด ๐—ฎ๐—ฟ๐˜๐—ถ๐—ฐ๐—น๐—ฒ๐˜€ ;

  1. https://www.geeksforgeeks.org/stdstring-class-in-c/
  2. https://www.tutorialspoint.com/cplusplus/cpp_strings.htm
  3. https://www.javatpoint.com/java-string
  4. https://www.geeksforgeeks.org/strings-in-java/
  5. https://www.w3schools.com/python/python_strings.asp

๐Ÿ“ฝ๏ธ ๐—ง๐˜‚๐˜๐—ผ๐—ฟ๐—ถ๐—ฎ๐—น ๐—Ÿ๐—ถ๐—ป๐—ธ๐˜€;

  1. https://youtu.be/W8hPsBquD6Y
  2. https://youtu.be/1pVI0yiEBR8
  3. https://youtu.be/vCRD36bG8xQ
  4. https://youtu.be/Wdjr6uoZ0e0

๐Ÿ‘จโ€๐Ÿ’ป ๐—ค๐˜‚๐—ฒ๐˜€๐˜๐—ถ๐—ผ๐—ป๐—ถ๐—ป๐—ด ๐—ฅ๐—ผ๐˜‚๐—ป๐—ฑ :

โ˜… ๐Ÿฑ ๐—ฝ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ด ๐—พ๐˜‚๐—ฒ๐˜€๐˜๐—ถ๐—ผ๐—ป๐˜€ โ˜…

  1. https://leetcode.com/problems/roman-to-integer/
  2. https://leetcode.com/problems/reverse-words-in-a-string/
  3. https://leetcode.com/problems/check-if-the-sentence-is-pangram/
  4. https://leetcode.com/problems/minimum-deletions-to-make-string-balanced/
  5. https://leetcode.com/problems/longest-common-prefix/