Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. gcc -Wall -g -c dict1.c
  2. gcc -Wall -g -c record.c
  3. gcc -Wall -g -c LList.c
  4. gcc -Wall -g -c bst.c
  5. gcc -o dict1 dict1.o bst.o LList.o record.o
  6. [Test Script] Running test 1
  7. [Test Script] Passed Tests 0/10
  8. [Test Script] Input was:
  9. 2,3,4,5,F,6,7,8,9,1,2,3,4,5,6,2018-01-01,2019-01-01,9
  10. [Test Script] Expected Results File Output Needed Line:
  11. 2018-01-01 --> VendorID: 2 || passenger_count: 3 || trip_distance: 4 || RatecodeID: 5 || store_and_fwd_flag: F || PULocationID: 6 || DOLocationID: 7 || payment_type: 8 || fare_amount: 9 || extra: 1 || mta_tax: 2 || tip_amount: 3 || tolls_amount: 4 || improvement_surcharge: 5 || total_amount: 6 || DOdatetime: 2019-01-01 || trip_duration: 9 ||
  12. [Test Script] Actual Output:
  13. 2018-01-01 --> VendorID: 2 || passenger_count: 3 || trip_distance: 4 || RatecodeID: 5 || store_and_fwd_flag: F || PULocationID: 6 || DOLocationID: 7 || payment_type: 8 || fare_amount: 9 || extra: 1 || mta_tax: 2 || tip_amount: 3 || tolls_amount: 4 || improvement_surcharge: 5 || total_amount: 6 || DOdatetime: 2019-01-01 || trip_duration: 9 ||
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement