Bitwise And

Certified Associate Developer

a!localVariables(
  local!input1: if(
    len(ri!input2) > len(ri!input1),
    concat(
      a!forEach(
        items: enumerate(len(ri!input2) - len(ri!input1)),
        expression: 0
      ),
      ri!input1
    ),
    ri!input1
  ),
  local!input2: if(
    len(ri!input1) > len(ri!input2),
    concat(
      a!forEach(
        items: enumerate(len(ri!input1) - len(ri!input2)),
        expression: 0
      ),
      ri!input2
    ),
    ri!input2
  ),
  concat(
    a!forEach(
      items: enumerate(len(local!input1)),
      expression: if(
        and(local!input1[fv!index] =1, local!input2[fv!index]=1),
        1,
        0
      )
    )
  )
)

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data