|
|
|
|
|
by SilasX
3751 days ago
|
|
It depends on what "not code in X correctly" means. If they missed a few syntactical things, it's fine. If they're obviously still "thinking in a different language", then no. For example, if you ask them to loop over a list of items in Python, they shouldn't write: for i in range(len(items)):
do_stuff_to(items[i]))
|
|