You are viewing a single comment's thread. Return to all comments →
awk -F " " '{if (Misplaced &3 >= "50" && 1,":","Pass"; else print $1,":","Fail";}'
I wrote the above logic but not sure why it fails for test cases 1 & 2.
Seems like cookies are disabled on this browser, please enable them to open this website
'Awk' - 2
You are viewing a single comment's thread. Return to all comments →
awk -F " " '{if (3 >= "50" && 1,":","Pass"; else print $1,":","Fail";}'
I wrote the above logic but not sure why it fails for test cases 1 & 2.