Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. 'use strict';
  2.  
  3. const assert = require('assert');
  4. const order = require('./orderwords');
  5.  
  6. // "e2st 4test Ce1ci un3" => "Ceci est un test"
  7. // "m6orning 1I do3jo tha5n m4ore l2ove" => "I love dojo more than morning"
  8. // " 3au 2mei s5a 8echipa l6ucreze Stu1dentii 7in inva4tat" => "Studentii mei au invatat sa lucreze in echipa"
  9.  
  10. describe("Return the ordered phrase", () => {
  11.  
  12. it('should be loaded', () => {
  13. assert.equal(true, true);
  14. });
  15.  
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement