معرفی شرکت ها


concat-remove-library-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Demo library
ویژگی مقدار
سیستم عامل -
نام فایل concat-remove-library-0.1.0
نام concat-remove-library
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Hernani Justo
ایمیل نویسنده hernanijusto@yahoo.com.br
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/concat-remove-library/
مجوز MIT
# library_mult Consider a string containing lowercase characters from the Portuguese alphabet. You can perform two types of operations on this string: Concat a lowercase character from the Portuguese alphabet at the end of the string. Remove the last character from the string. If the string is empty, it will remain empty. Given an integer k and two strings s and t, determine if you can convert s to t using exactly k operations described above on s. If possible, the program prints 'yes', otherwise it prints 'no'. For example, string s = [a, b, c] and string t = [d, e, f]. The number of moves k = 6. To convert s to t, we first remove all characters using 3 moves. Then we concatenate each of the characters of t in the order. In the sixth move, you will have the expected string s. If more movements are available than necessary, they can be eliminated by performing multiple removals on an empty string. If there are fewer movements, it would not be possible to create the new string. Input format The first line contains the string s, the starting string. The second line contains the string t, the desired string. The third line contains an integer k, the number of operations. Constrains a) 1 <= | s | <= 100 b) 1 <= | t | <= 100 c) 1 <= k <= 100 d) s and t consists of lowercase letters of the Portuguese alphabet, ascii [a-z] Output format Print 'yes' if you can get the string t by executing exactly k operations on the string s, and print 'no' otherwise. Example 1 bla bla bla bla blablabcde 8 yes Explanation It took 5 operations to reduce the string "blablablabla" to "blablab". Then, 3 concatenation operations (c, d, e) were needed to obtain the string "blablabcde". In this way, as it was possible to convert s to t using exactly k = 8 operations, the program printed "yes".


نحوه نصب


نصب پکیج whl concat-remove-library-0.1.0:

    pip install concat-remove-library-0.1.0.whl


نصب پکیج tar.gz concat-remove-library-0.1.0:

    pip install concat-remove-library-0.1.0.tar.gz