mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
171 B
Python
13 lines
171 B
Python
|
|
#String concat in loop
|
|
def y(seq):
|
|
y_accum = ''
|
|
for s in seq:
|
|
y_accum += s
|
|
|
|
|
|
def z(seq):
|
|
z_accum = ''
|
|
for s in seq:
|
|
z_accum = z_accum + s
|