apple | python interview questions and answers | dsa for data engineer | dsa for data science

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ธ.ค. 2024

ความคิดเห็น • 5

  • @sravankumar1767
    @sravankumar1767 6 หลายเดือนก่อน +2

    Nice explanation 👌 👍 👏

  • @prabhatgupta6415
    @prabhatgupta6415 6 หลายเดือนก่อน

    thoda tej bola kro ya phir use good speaker.

    • @DEwithDhairy
      @DEwithDhairy  6 หลายเดือนก่อน

      Noted bro
      I know voice is on the little lower side

  • @vivekdutta7131
    @vivekdutta7131 5 หลายเดือนก่อน

    def operation(st):
    st_new = ""
    cnt = 0
    dr = st[0]
    print(dr)
    for i in st:
    if i == dr:
    cnt +=1
    else:
    st_new = st_new + dr + str(cnt)
    cnt = 1
    dr = i
    st_new = st_new + dr + str(cnt)
    print(st_new)
    if __name__ == "__main__":
    st = "abcabbbccaabd"
    print(st)
    operation(st)