Đầu tiên, chúng tôi lấy một chuỗi nhập của người dùng với sự kết hợp của 1 và 0, sau đó tạo một chuỗi mới với 1’s, sau đó kiểm tra xem có bất kỳ số p nào của các số 1 liên tiếp hay không. Nếu có thì hiển thị FOUND, nếu không thì hiển thị NOTFOUND.
Ví dụ
Binary number ::1111001111 Enter consecutive 1’s :3 Consecutive 1's is Found
Thuật toán
Step 1: input a string with the combination of 1’s, it’s stored in the variable X and 0’s and p is the consecutive 1’s in a binary number.
Step 2: form a new string of p 1’s.
newstring=”1”*p
Step 3: check if there is p 1’s at any position.
If newstring in X
Display “FOUND”
Else
Display “NOT FOUND”
End if
Mã mẫu
# To check if there is k consecutive 1's in a binary number
def binaryno_ones(n,p):
# form a new string of k 1's
newstr = "1"*p
# if there is k 1's at any position
if newstr in n:
print ("Consecutive 1's is Found")
else:
print (" Consecutive 1's is Not Found")
# driver code
n =input("Enter Binary number ::")
p = int(input("Enter consecutive 1's ::"))
binaryno_ones(n, p)
Đầu ra
Enter Binary number ::1111001111 Enter consecutive 1's ::3 Consecutive 1's is Found