Browse Source

Merge pull request #517 from azamatamirzhan/patch-4

fixed bash syntax for ARG
pull/521/head
OGordoo 5 years ago committed by GitHub
parent
commit
c5a84cd999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      subjects/push-swap/push-swap.audit.en.md

6
subjects/push-swap/push-swap.audit.en.md

@ -66,7 +66,7 @@ OK
###### Does it display the right result as above? ###### Does it display the right result as above?
##### Try to run `"ARG = "4 67 3 87 23"; ./push_swap $ARG | ./checker $ARG"`. ##### Try to run `"ARG=("4 67 3 87 23"); ./push_swap $ARG | ./checker $ARG"`.
```console ```console
OK OK
@ -78,11 +78,11 @@ OK
#### General #### General
##### Try to run `"$ARG= "<100 random numbers>"; ./push_swap $ARG"` with 100 random different numbers instead of the tag. ##### Try to run `"ARG=("<100 random numbers>"); ./push_swap $ARG"` with 100 random different numbers instead of the tag.
###### +Does it display less than 700 commands? ###### +Does it display less than 700 commands?
##### Try to run `"$ARG= "<100 random numbers>; ./push_swap $ARG | ./checker $ARG"` with the same 100 random different numbers as before instead of the tag. ##### Try to run `"ARG=("<100 random numbers>"); ./push_swap $ARG | ./checker $ARG"` with the same 100 random different numbers as before instead of the tag.
```console ```console
OK OK

Loading…
Cancel
Save